@@ -167,7 +167,7 @@ <h2><a name="SEC4" href="#TOC1">PCRE2 NATIVE API COMPILE CONTEXT FUNCTIONS</a></
167167< br >
168168< br >
169169< b > int pcre2_set_max_varlookbehind(pcre2_compile_contest *< i > ccontext</ i > ,</ b >
170- < b > " uint32_t < i > value</ i > );</ b >
170+ < b > uint32_t < i > value</ i > );</ b >
171171< br >
172172< br >
173173< b > int pcre2_set_newline(pcre2_compile_context *< i > ccontext</ i > ,</ b >
@@ -273,7 +273,7 @@ <h2><a name="SEC6" href="#TOC1">PCRE2 NATIVE API STRING EXTRACTION FUNCTIONS</a>
273273< br >
274274< br >
275275< b > int pcre2_substring_list_get(pcre2_match_data *< i > match_data</ i > ,</ b >
276- < b > " PCRE2_UCHAR ***< i > listptr</ i > , PCRE2_SIZE **< i > lengthsptr</ i > );</ b >
276+ < b > PCRE2_UCHAR ***< i > listptr</ i > , PCRE2_SIZE **< i > lengthsptr</ i > );</ b >
277277</ p >
278278< h2 > < a name ="SEC7 " href ="#TOC1 "> PCRE2 NATIVE API STRING SUBSTITUTION FUNCTION</ a > </ h2 >
279279< p >
904904< br >
905905< br >
906906< b > int pcre2_set_max_varlookbehind(pcre2_compile_contest *< i > ccontext</ i > ,</ b >
907- < b > " uint32_t < i > value</ i > );</ b >
907+ < b > uint32_t < i > value</ i > );</ b >
908908< br >
909909< br >
910910This sets a maximum length for the number of characters matched by a
@@ -1999,8 +1999,9 @@ <h3>
19991999</ pre >
20002000This is an option whose main effect is at matching time. It does not change
20012001what < b > pcre2_compile()</ b > generates, but it does affect the output of the JIT
2002- compiler. Setting this option is equivalent to calling < b > pcre2_set_optimize()</ b >
2003- with the < i > directive</ i > parameter set to PCRE2_START_OPTIMIZE_OFF.
2002+ compiler. Setting this option is equivalent to calling
2003+ < b > pcre2_set_optimize()</ b > with the < i > directive</ i > parameter set to
2004+ PCRE2_START_OPTIMIZE_OFF.
20042005</ p >
20052006< p >
20062007There are a number of optimizations that may occur at the start of a match, in
@@ -2073,9 +2074,9 @@ <h3>
20732074< p >
20742075The PCRE2_EXTRA_CASELESS_RESTRICT option (see above) restricts caseless
20752076matching such that ASCII characters match only ASCII characters and non-ASCII
2076- characters match only non-ASCII characters. The PCRE2_EXTRA_TURKISH_CASING option
2077- (see above) alters the matching of the 'i' characters to follow their behaviour
2078- in Turkish and Azeri languages. For further details on
2077+ characters match only non-ASCII characters. The PCRE2_EXTRA_TURKISH_CASING
2078+ option (see above) alters the matching of the 'i' characters to follow their
2079+ behaviour in Turkish and Azeri languages. For further details on
20792080PCRE2_EXTRA_CASELESS_RESTRICT and PCRE2_EXTRA_TURKISH_CASING, see the
20802081< a href ="pcre2unicode.html "> < b > pcre2unicode</ b > </ a >
20812082page.
@@ -3708,7 +3709,7 @@ <h2><a name="SEC35" href="#TOC1">EXTRACTING CAPTURED SUBSTRINGS BY NUMBER</a></h
37083709< h2 > < a name ="SEC36 " href ="#TOC1 "> EXTRACTING A LIST OF ALL CAPTURED SUBSTRINGS</ a > </ h2 >
37093710< p >
37103711< b > int pcre2_substring_list_get(pcre2_match_data *< i > match_data</ i > ,</ b >
3711- < b > " PCRE2_UCHAR ***< i > listptr</ i > , PCRE2_SIZE **< i > lengthsptr</ i > );</ b >
3712+ < b > PCRE2_UCHAR ***< i > listptr</ i > , PCRE2_SIZE **< i > lengthsptr</ i > );</ b >
37123713< br >
37133714< br >
37143715< b > void pcre2_substring_list_free(PCRE2_UCHAR **< i > list</ i > );</ b >
@@ -3942,8 +3943,8 @@ <h2><a name="SEC38" href="#TOC1">CREATING A NEW STRING WITH SUBSTITUTIONS</a></h
39423943 $_ insert the entire input string
39433944 $*MARK or ${*MARK} insert a control verb name
39443945</ pre >
3945- Either a group number or a group name can be given for < i > n</ i > , for example $2 or
3946- $NAME. Curly brackets are required only if the following character would be
3946+ Either a group number or a group name can be given for < i > n</ i > , for example $2
3947+ or $NAME. Curly brackets are required only if the following character would be
39473948interpreted as part of the number or name. The number may be zero to include
39483949the entire matched string. For example, if the pattern a(b)c is matched with
39493950"=abc=" and the replacement string "+$1$0$1+", the result is "=+babcb+=".
@@ -4033,9 +4034,9 @@ <h2><a name="SEC38" href="#TOC1">CREATING A NEW STRING WITH SUBSTITUTIONS</a></h
40334034page.
40344035</ p >
40354036< p >
4036- The Python form \g<n>, where the angle brackets are part of the syntax and < i > n </ i >
4037- is either a group name or number, is recognized as an alternative way of
4038- inserting the contents of a group, for example \g<3>.
4037+ The Python form \g<n>, where the angle brackets are part of the syntax and
4038+ < i > n </ i > is either a group name or number, is recognized as an alternative way
4039+ of inserting the contents of a group, for example \g<3>.
40394040</ p >
40404041< p >
40414042There are also four escape sequences for forcing the case of inserted letters.
0 commit comments