Movatterモバイル変換


[0]ホーム

URL:


man7.org > Linux >man-pages

Linux/UNIX system programming training


pcre2_pattern_info(3) — Linux manual page

NAME |SYNOPSIS |DESCRIPTION |COLOPHON

PCRE2_PATTERN_INFO(3)    Library Functions ManualPCRE2_PATTERN_INFO(3)

NAME        top

       PCRE2 - Perl-compatible regular expressions (revised API)

SYNOPSIS        top

#include <pcre2.h>int pcre2_pattern_info(const pcre2_code *code, uint32_twhat,void *where);

DESCRIPTION        top

       This function returns information about a compiled pattern. Its       arguments are:code     Pointer to a compiled regular expression patternwhat     What information is requiredwhere    Where to put the information       The recognized values for thewhat argument, and the information       they request are as follows:         PCRE2_INFO_ALLOPTIONS      Final options after compiling         PCRE2_INFO_ARGOPTIONS      Options passed topcre2_compile()         PCRE2_INFO_BACKREFMAX      Number of highest backreference         PCRE2_INFO_BSR             What \R matches:                                      PCRE2_BSR_UNICODE: Unicode line       endings                                      PCRE2_BSR_ANYCRLF: CR, LF, or CRLF       only         PCRE2_INFO_CAPTURECOUNT    Number of capturing subpatterns         PCRE2_INFO_DEPTHLIMIT      Backtracking depth limit if set,                                      otherwise PCRE2_ERROR_UNSET         PCRE2_INFO_EXTRAOPTIONS    Extra options that were passed in the                                      compile context         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         PCRE2_INFO_FIRSTCODEUNIT   First code unit when type is 1         PCRE2_INFO_FRAMESIZE       Size of backtracking frame         PCRE2_INFO_HASBACKSLASHC   Return 1 if pattern contains \C         PCRE2_INFO_HASCRORLF       Return 1 if explicit CR or LF matches                                      exist in the pattern         PCRE2_INFO_HEAPLIMIT       Heap memory limit if set,                                      otherwise PCRE2_ERROR_UNSET         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         PCRE2_INFO_LASTCODEUNIT    Last code unit when type is 1         PCRE2_INFO_MATCHEMPTY      1 if the pattern can match an                                      empty string, 0 otherwise         PCRE2_INFO_MATCHLIMIT      Match limit if set,                                      otherwise PCRE2_ERROR_UNSET         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         PCRE2_INFO_NAMEENTRYSIZE   Size of name table entries         PCRE2_INFO_NAMETABLE       Pointer to name table         PCRE2_CONFIG_NEWLINE       Code for the newline sequence:                                      PCRE2_NEWLINE_CR                                      PCRE2_NEWLINE_LF                                      PCRE2_NEWLINE_CRLF                                      PCRE2_NEWLINE_ANY                                      PCRE2_NEWLINE_ANYCRLF                                      PCRE2_NEWLINE_NUL         PCRE2_INFO_RECURSIONLIMIT  Obsolete synonym for       PCRE2_INFO_DEPTHLIMIT         PCRE2_INFO_SIZE            Size of compiled pattern       Ifwhere is NULL, the function returns the amount of memory needed       for the requested information, in bytes. Otherwise, thewhere       argument must point to an unsigned 32-bit integer (uint32_t       variable), except for the followingwhat values, when it must       point to a variable of the type shown:         PCRE2_INFO_FIRSTBITMAP     const uint8_t *         PCRE2_INFO_JITSIZE         size_t         PCRE2_INFO_NAMETABLE       PCRE2_SPTR         PCRE2_INFO_SIZE            size_t       The yield of the function is zero on success or:         PCRE2_ERROR_NULL           the argumentcode is NULL         PCRE2_ERROR_BADMAGIC       the "magic number" was not found         PCRE2_ERROR_BADOPTION      the value ofwhat is invalid         PCRE2_ERROR_BADMODE        the pattern was compiled in the wrong       mode         PCRE2_ERROR_UNSET          the requested information is not set       There is a complete description of the PCRE2 native API in thepcre2apipage and a description of the POSIX API in thepcre2posix       page.

COLOPHON        top

       This page is part of thePCRE (Perl Compatible Regular       Expressions) project.  Information about the project can be found       at ⟨http://www.pcre.org/⟩.  If you have a bug report for this       manual page, see       ⟨http://bugs.exim.org/enter_bug.cgi?product=PCRE⟩.  This page was       obtained from the tarball fetched from       ⟨https://github.com/PhilipHazel/pcre2.git⟩ on 2025-08-11.  If you       discover any rendering problems in this HTML version of the page,       or you believe there is a better or more up-to-date source for the       page, or you have corrections or improvements to the information       in this COLOPHON (which isnot part of the original manual page),       send a mail to man-pages@man7.orgPCRE2 10.46-DEV              14 February 2019PCRE2_PATTERN_INFO(3)


HTML rendering created 2025-09-06 byMichael Kerrisk, author ofThe Linux Programming Interface.

For details of in-depthLinux/UNIX system programming training courses that I teach, lookhere.

Hosting byjambit GmbH.

Cover of TLPI


[8]ページ先頭

©2009-2025 Movatter.jp