2019-02-14 17:07:14 +01:00
|
|
|
.TH PCRE2_PATTERN_INFO 3 "14 February 2019" "PCRE2 10.33"
|
2014-10-21 18:33:30 +02:00
|
|
|
.SH NAME
|
|
|
|
PCRE2 - Perl-compatible regular expressions (revised API)
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.rs
|
|
|
|
.sp
|
|
|
|
.B #include <pcre2.h>
|
|
|
|
.PP
|
|
|
|
.nf
|
2019-02-14 17:07:14 +01:00
|
|
|
.B int pcre2_pattern_info(const pcre2_code *\fIcode\fP, uint32_t \fIwhat\fP,
|
|
|
|
.B " void *\fIwhere\fP);"
|
2014-10-21 18:33:30 +02:00
|
|
|
.fi
|
|
|
|
.
|
|
|
|
.SH DESCRIPTION
|
|
|
|
.rs
|
|
|
|
.sp
|
|
|
|
This function returns information about a compiled pattern. Its arguments are:
|
|
|
|
.sp
|
2017-12-16 18:49:26 +01:00
|
|
|
\fIcode\fP Pointer to a compiled regular expression pattern
|
2014-12-01 17:14:53 +01:00
|
|
|
\fIwhat\fP What information is required
|
|
|
|
\fIwhere\fP Where to put the information
|
2014-10-21 18:33:30 +02:00
|
|
|
.sp
|
2014-12-01 17:14:53 +01:00
|
|
|
The recognized values for the \fIwhat\fP argument, and the information they
|
|
|
|
request are as follows:
|
2014-10-21 18:33:30 +02:00
|
|
|
.sp
|
|
|
|
PCRE2_INFO_ALLOPTIONS Final options after compiling
|
|
|
|
PCRE2_INFO_ARGOPTIONS Options passed to \fBpcre2_compile()\fP
|
2018-06-17 16:13:28 +02:00
|
|
|
PCRE2_INFO_BACKREFMAX Number of highest backreference
|
2014-12-01 17:14:53 +01:00
|
|
|
PCRE2_INFO_BSR What \eR matches:
|
|
|
|
PCRE2_BSR_UNICODE: Unicode line endings
|
|
|
|
PCRE2_BSR_ANYCRLF: CR, LF, or CRLF only
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_CAPTURECOUNT Number of capturing subpatterns
|
2017-03-25 18:50:54 +01:00
|
|
|
.\" JOIN
|
|
|
|
PCRE2_INFO_DEPTHLIMIT Backtracking depth limit if set,
|
|
|
|
otherwise PCRE2_ERROR_UNSET
|
2017-12-16 18:49:26 +01:00
|
|
|
PCRE2_INFO_EXTRAOPTIONS Extra options that were passed in the
|
|
|
|
compile context
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_FIRSTBITMAP Bitmap of first code units, or NULL
|
|
|
|
PCRE2_INFO_FIRSTCODETYPE Type of start-of-match information
|
|
|
|
0 nothing set
|
|
|
|
1 first code unit is set
|
|
|
|
2 start of string or after newline
|
2015-11-21 17:27:06 +01:00
|
|
|
PCRE2_INFO_FIRSTCODEUNIT First code unit when type is 1
|
2017-07-19 18:04:15 +02:00
|
|
|
PCRE2_INFO_FRAMESIZE Size of backtracking frame
|
2015-11-21 17:27:06 +01:00
|
|
|
PCRE2_INFO_HASBACKSLASHC Return 1 if pattern contains \eC
|
2017-03-25 18:50:54 +01:00
|
|
|
.\" JOIN
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_HASCRORLF Return 1 if explicit CR or LF matches
|
|
|
|
exist in the pattern
|
2017-04-11 13:47:25 +02:00
|
|
|
.\" JOIN
|
|
|
|
PCRE2_INFO_HEAPLIMIT Heap memory limit if set,
|
|
|
|
otherwise PCRE2_ERROR_UNSET
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_JCHANGED Return 1 if (?J) or (?-J) was used
|
|
|
|
PCRE2_INFO_JITSIZE Size of JIT compiled code, or 0
|
|
|
|
PCRE2_INFO_LASTCODETYPE Type of must-be-present information
|
|
|
|
0 nothing set
|
|
|
|
1 code unit is set
|
2015-11-21 17:27:06 +01:00
|
|
|
PCRE2_INFO_LASTCODEUNIT Last code unit when type is 1
|
2017-03-25 18:50:54 +01:00
|
|
|
.\" JOIN
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_MATCHEMPTY 1 if the pattern can match an
|
|
|
|
empty string, 0 otherwise
|
2017-03-25 18:50:54 +01:00
|
|
|
.\" JOIN
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_MATCHLIMIT Match limit if set,
|
2014-12-01 17:14:53 +01:00
|
|
|
otherwise PCRE2_ERROR_UNSET
|
2017-03-25 18:50:54 +01:00
|
|
|
.\" JOIN
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_MAXLOOKBEHIND Length (in characters) of the longest
|
|
|
|
lookbehind assertion
|
|
|
|
PCRE2_INFO_MINLENGTH Lower bound length of matching strings
|
|
|
|
PCRE2_INFO_NAMECOUNT Number of named subpatterns
|
2015-11-21 17:27:06 +01:00
|
|
|
PCRE2_INFO_NAMEENTRYSIZE Size of name table entries
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_NAMETABLE Pointer to name table
|
|
|
|
PCRE2_CONFIG_NEWLINE Code for the newline sequence:
|
2014-12-01 17:14:53 +01:00
|
|
|
PCRE2_NEWLINE_CR
|
|
|
|
PCRE2_NEWLINE_LF
|
|
|
|
PCRE2_NEWLINE_CRLF
|
|
|
|
PCRE2_NEWLINE_ANY
|
|
|
|
PCRE2_NEWLINE_ANYCRLF
|
2017-07-19 18:04:15 +02:00
|
|
|
PCRE2_NEWLINE_NUL
|
2017-03-25 18:50:54 +01:00
|
|
|
PCRE2_INFO_RECURSIONLIMIT Obsolete synonym for PCRE2_INFO_DEPTHLIMIT
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_SIZE Size of compiled pattern
|
|
|
|
.sp
|
2014-12-01 17:14:53 +01:00
|
|
|
If \fIwhere\fP is NULL, the function returns the amount of memory needed for
|
|
|
|
the requested information, in bytes. Otherwise, the \fIwhere\fP argument must
|
|
|
|
point to an unsigned 32-bit integer (uint32_t variable), except for the
|
|
|
|
following \fIwhat\fP values, when it must point to a variable of the type
|
|
|
|
shown:
|
2014-10-21 18:33:30 +02:00
|
|
|
.sp
|
2014-11-25 12:55:07 +01:00
|
|
|
PCRE2_INFO_FIRSTBITMAP const uint8_t *
|
2014-10-21 18:33:30 +02:00
|
|
|
PCRE2_INFO_JITSIZE size_t
|
|
|
|
PCRE2_INFO_NAMETABLE PCRE2_SPTR
|
|
|
|
PCRE2_INFO_SIZE size_t
|
|
|
|
.sp
|
|
|
|
The yield of the function is zero on success or:
|
|
|
|
.sp
|
|
|
|
PCRE2_ERROR_NULL the argument \fIcode\fP is NULL
|
|
|
|
PCRE2_ERROR_BADMAGIC the "magic number" was not found
|
|
|
|
PCRE2_ERROR_BADOPTION the value of \fIwhat\fP is invalid
|
|
|
|
PCRE2_ERROR_BADMODE the pattern was compiled in the wrong mode
|
|
|
|
PCRE2_ERROR_UNSET the requested information is not set
|
|
|
|
.P
|
|
|
|
There is a complete description of the PCRE2 native API in the
|
|
|
|
.\" HREF
|
|
|
|
\fBpcre2api\fP
|
|
|
|
.\"
|
|
|
|
page and a description of the POSIX API in the
|
|
|
|
.\" HREF
|
|
|
|
\fBpcre2posix\fP
|
|
|
|
.\"
|
|
|
|
page.
|