Diff for /embedaddon/pcre/doc/pcrecpp.3 between versions 1.1.1.2 and 1.1.1.4

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.4, 2013/07/22 08:25:56
Line 1 Line 1
.TH PCRECPP 3.TH PCRECPP 3 "08 January 2012" "PCRE 8.30"
 .SH NAME  .SH NAME
 PCRE - Perl-compatible regular expressions.  PCRE - Perl-compatible regular expressions.
 .SH "SYNOPSIS OF C++ WRAPPER"  .SH "SYNOPSIS OF C++ WRAPPER"
Line 13  The C++ wrapper for PCRE was provided by Google Inc. S Line 13  The C++ wrapper for PCRE was provided by Google Inc. S
 functionality was added by Giuseppe Maxia. This brief man page was constructed  functionality was added by Giuseppe Maxia. This brief man page was constructed
 from the notes in the \fIpcrecpp.h\fP file, which should be consulted for  from the notes in the \fIpcrecpp.h\fP file, which should be consulted for
 further details. Note that the C++ wrapper supports only the original 8-bit  further details. Note that the C++ wrapper supports only the original 8-bit
PCRE library. There is no 16-bit support at present.PCRE library. There is no 16-bit or 32-bit support at present.
 .  .
 .  .
 .SH "MATCHING INTERFACE"  .SH "MATCHING INTERFACE"
Line 173  supported: Line 173  supported:
    PCRE_DOTALL           dot matches newlines        /s     PCRE_DOTALL           dot matches newlines        /s
    PCRE_DOLLAR_ENDONLY   $ matches only at end       N/A     PCRE_DOLLAR_ENDONLY   $ matches only at end       N/A
    PCRE_EXTRA            strict escape parsing       N/A     PCRE_EXTRA            strict escape parsing       N/A
   PCRE_EXTENDED         ignore whitespaces          /x   PCRE_EXTENDED         ignore white spaces         /x
    PCRE_UTF8             handles UTF8 chars          built-in     PCRE_UTF8             handles UTF8 chars          built-in
    PCRE_UNGREEDY         reverses * and *?           N/A     PCRE_UNGREEDY         reverses * and *?           N/A
    PCRE_NO_AUTO_CAPTURE  disables capturing parens   N/A (*)     PCRE_NO_AUTO_CAPTURE  disables capturing parens   N/A (*)

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


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