Lines Matching refs:g

1257        libreadline this is sufficient. However, in some environments (e.g.  if
2474 57 \g is not followed by a braced, angle-bracketed, or quoted
3340 the /g modifier. It is possible to emulate Perl's behaviour after
3492 match an empty string. It is possible to emulate Perl's /g behaviour by
4697 (g) The \R escape sequence can be restricted to match only CR, LF, or
5064 ter numbers, and \g{} to specify back references. The following para-
5158 The sequence \g followed by an unsigned or a negative number, option-
5160 named back reference can be coded as \g{name}. Back references are dis-
5165 For compatibility with Oniguruma, the non-Perl syntax \g followed by a
5168 Details are discussed later. Note that \g{...} (Perl syntax) and
5169 \g<...> (Oniguruma syntax) are not synonymous. The former is a back
5611 ments, you can mimic Perl's /g option, and it is in this kind of imple-
6512 following a backslash is to use the \g escape sequence. This escape
6518 (ring), \g{1}
6525 (abc(def)ghi)\g{-1}
6527 The sequence \g{-1} is a reference to the most recently started captur-
6528 ing subpattern before \g, that is, is it equivalent to \2 in this exam-
6529 ple. Similarly, \g{-2} would be equivalent to \1. The use of relative
6554 unified back reference syntax, in which \g can be used for both numeric
6561 (?<p1>(?i)rah)\s+\g{p1}
6581 \g{ syntax or an empty comment (see "Comments" below) can be used.
7203 For compatibility with Oniguruma, the non-Perl syntax \g followed by a
7209 (?<pn> \( ( (?>[^()]+) | \g<pn> )* \) )
7210 (sens|respons)e and \g'1'ibility
7215 (abc)(?i:\g<-1>)
7217 Note that \g{...} (Perl syntax) and \g<...> (Oniguruma syntax) are not
7990 \g{n} reference by number
7991 \g{-n} relative reference by number
7994 \g{name} reference by name (Perl)
8007 \g<name> call subpattern by name (Oniguruma)
8008 \g'name' call subpattern by name (Oniguruma)
8009 \g<n> call subpattern by absolute number (Oniguruma)
8010 \g'n' call subpattern by absolute number (Oniguruma)
8011 \g<+n> call subpattern by relative number (PCRE extension)
8012 \g'+n' call subpattern by relative number (PCRE extension)
8013 \g<-n> call subpattern by relative number (PCRE extension)
8014 \g'-n' call subpattern by relative number (PCRE extension)
9123 0: g
9956 "?:" modifier within the pattern itself. e.g. (?:ab|cd) does not cap-
10138 If the -g option is given on the command line, the program then goes on
10168 ./pcredemo -g 'cat|dog' 'the dog sat on the cat'
10177 systems (e.g. Solaris):