Diff for /embedaddon/pcre/doc/html/pcre_compile2.html between versions 1.1.1.2 and 1.1.1.5

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.5, 2014/06/15 19:46:05
Line 20  SYNOPSIS Line 20  SYNOPSIS
 </P>  </P>
 <P>  <P>
 <b>pcre *pcre_compile2(const char *<i>pattern</i>, int <i>options</i>,</b>  <b>pcre *pcre_compile2(const char *<i>pattern</i>, int <i>options</i>,</b>
<b>int *<i>errorcodeptr</i>,</b><b>     int *<i>errorcodeptr</i>,</b>
<b>const char **<i>errptr</i>, int *<i>erroffset</i>,</b><b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
<b>const unsigned char *<i>tableptr</i>);</b><b>     const unsigned char *<i>tableptr</i>);</b>
</P><br>
<P><br>
 <b>pcre16 *pcre16_compile2(PCRE_SPTR16 <i>pattern</i>, int <i>options</i>,</b>  <b>pcre16 *pcre16_compile2(PCRE_SPTR16 <i>pattern</i>, int <i>options</i>,</b>
<b>int *<i>errorcodeptr</i>,</b><b>     int *<i>errorcodeptr</i>,</b>
<b>const char **<i>errptr</i>, int *<i>erroffset</i>,</b><b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
<b>const unsigned char *<i>tableptr</i>);</b><b>     const unsigned char *<i>tableptr</i>);</b>
 <br>
 <br>
 <b>pcre32 *pcre32_compile2(PCRE_SPTR32 <i>pattern</i>, int <i>options</i>,</b>
 <b>"     int *<i>errorcodeptr</i>,£</b>
 <b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
 <b>     const unsigned char *<i>tableptr</i>);</b>
 </P>  </P>
 <br><b>  <br><b>
 DESCRIPTION  DESCRIPTION
 </b><br>  </b><br>
 <P>  <P>
 This function compiles a regular expression into an internal form. It is the  This function compiles a regular expression into an internal form. It is the
same as <b>pcre[16]_compile()</b>, except for the addition of thesame as <b>pcre[16|32]_compile()</b>, except for the addition of the
 <i>errorcodeptr</i> argument. The arguments are:  <i>errorcodeptr</i> argument. The arguments are:
 <pre>  <pre>
   <i>pattern</i>       A zero-terminated string containing the    <i>pattern</i>       A zero-terminated string containing the
Line 57  The option bits are: Line 63  The option bits are:
   PCRE_DOLLAR_ENDONLY     $ not to match newline at end    PCRE_DOLLAR_ENDONLY     $ not to match newline at end
   PCRE_DOTALL             . matches anything including NL    PCRE_DOTALL             . matches anything including NL
   PCRE_DUPNAMES           Allow duplicate names for subpatterns    PCRE_DUPNAMES           Allow duplicate names for subpatterns
  PCRE_EXTENDED           Ignore whitespace and # comments  PCRE_EXTENDED           Ignore white space and # comments
   PCRE_EXTRA              PCRE extra features    PCRE_EXTRA              PCRE extra features
                             (not much use currently)                              (not much use currently)
   PCRE_FIRSTLINE          Force matching to be before newline    PCRE_FIRSTLINE          Force matching to be before newline
   PCRE_JAVASCRIPT_COMPAT  JavaScript compatibility    PCRE_JAVASCRIPT_COMPAT  JavaScript compatibility
   PCRE_MULTILINE          ^ and $ match newlines within data    PCRE_MULTILINE          ^ and $ match newlines within data
     PCRE_NEVER_UTF          Lock out UTF, e.g. via (*UTF)
   PCRE_NEWLINE_ANY        Recognize any Unicode newline sequence    PCRE_NEWLINE_ANY        Recognize any Unicode newline sequence
   PCRE_NEWLINE_ANYCRLF    Recognize CR, LF, and CRLF as newline    PCRE_NEWLINE_ANYCRLF    Recognize CR, LF, and CRLF as newline
                             sequences                              sequences
Line 71  The option bits are: Line 78  The option bits are:
   PCRE_NEWLINE_LF         Set LF as the newline sequence    PCRE_NEWLINE_LF         Set LF as the newline sequence
   PCRE_NO_AUTO_CAPTURE    Disable numbered capturing paren-    PCRE_NO_AUTO_CAPTURE    Disable numbered capturing paren-
                             theses (named ones available)                              theses (named ones available)
     PCRE_NO_AUTO_POSSESS    Disable auto-possessification
     PCRE_NO_START_OPTIMIZE  Disable match-time start optimizations
   PCRE_NO_UTF16_CHECK     Do not check the pattern for UTF-16    PCRE_NO_UTF16_CHECK     Do not check the pattern for UTF-16
                             validity (only relevant if                              validity (only relevant if
                             PCRE_UTF16 is set)                              PCRE_UTF16 is set)
     PCRE_NO_UTF32_CHECK     Do not check the pattern for UTF-32
                               validity (only relevant if
                               PCRE_UTF32 is set)
   PCRE_NO_UTF8_CHECK      Do not check the pattern for UTF-8    PCRE_NO_UTF8_CHECK      Do not check the pattern for UTF-8
                             validity (only relevant if                              validity (only relevant if
                             PCRE_UTF8 is set)                              PCRE_UTF8 is set)
   PCRE_UCP                Use Unicode properties for \d, \w, etc.    PCRE_UCP                Use Unicode properties for \d, \w, etc.
   PCRE_UNGREEDY           Invert greediness of quantifiers    PCRE_UNGREEDY           Invert greediness of quantifiers
   PCRE_UTF16              Run <b>pcre16_compile()</b> in UTF-16 mode    PCRE_UTF16              Run <b>pcre16_compile()</b> in UTF-16 mode
     PCRE_UTF32              Run <b>pcre32_compile()</b> in UTF-32 mode
   PCRE_UTF8               Run <b>pcre_compile()</b> in UTF-8 mode    PCRE_UTF8               Run <b>pcre_compile()</b> in UTF-8 mode
 </pre>  </pre>
PCRE must be built with UTF support in order to use PCRE_UTF8/16 andPCRE must be built with UTF support in order to use PCRE_UTF8/16/32 and
PCRE_NO_UTF8/16_CHECK, and with UCP support if PCRE_UCP is used.PCRE_NO_UTF8/16/32_CHECK, and with UCP support if PCRE_UCP is used.
 </P>  </P>
 <P>  <P>
 The yield of the function is a pointer to a private data structure that  The yield of the function is a pointer to a private data structure that

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>