后向引用
在一个字符类外面, 反斜线紧跟一个大于 0 (可能还有一位数)的数字就是一个到模式中之前出现的某个捕获组的后向引用。
如果紧跟反斜线的数字小于 10,它总是一个后向引用,并且如果在模式中没有足够多的捕获组,将会引发一个错误。换而言之,被引用的括号不能少于被引用的小于 10 的数量。 A "forward back reference" can make sense when a repetition is involved and the subpattern to the right has participated in an earlier iteration. 查看转义序列查看具体的数字处理方式。
一个后向引用会直接匹配被引用捕获组在目标字符串中实际捕获到的内容,
而不是匹配子组模式的内容。因此,模式
(sens|respons)e and \1ibility
将会匹配 ”sense and sensibility” 和 ”response and responsibility”,
而不会匹配 ”sense and responsibility”。
如果在后向引用时被强制进行了大小写敏感匹配,
比如
((?i)rah)\s+\1
匹配 ”rah
rah”和”RAH RAH”,但是不会匹配 ”RAH rah”,
即使原始捕获子组自身是不区分大小写的。 译注:
这里其实要考虑的是后向引用期望得到的内容是和那个被引用的捕获子组得到的内容是完全一致的(当然,
我们可以通过在后向引用之前设定内部选项使其不区分大小写,或者增加模式修饰符,
同样可以达到不区分大小写的目的,但是,
这种做法实际上是从外部对其行为进行了控制。)
可能会有超过一个的后向引用引用相同的子组。
一个子组可能并不会真正的用于特定的匹配,此时,
任何对这个子组的后向引用也都会失败。 比如,
模式
(a|(bc))\2
总是在匹配 ”a” 开头而不是 ”bc” 开头的字符串时失败。
因为可能会有多达 99 个后向引用,
所有紧跟反斜线后的数字都可能是一个潜在的后向引用计数。
如果模式在后向引用之后紧接着还是一个数值字符,
那么必须使用一些分隔符用于终结后向引用语法。 如果设置了 PCRE_EXTENDED 选项,
可以使用空格来做。其他情况下可以使用一个空的注释。
如果一个后向引用出现在它所引用的子组内部, 它的匹配就会失败。比如,
(a\1) 就不会得到任何匹配。然而这种引用可以用于内部的子模式重复。比如,
模式
(a|b\1)+
会匹配任意数量的 ”a” 组成的字符串以及 ”aba”, “ababba” 等等(译注:
因为子组内部有一个可选路径,可选路径中有一条路能够完成匹配,在匹配完成后,
后向引用就能够引用到内容了)。在每次子模式的迭代过程中,
后向引用匹配上一次迭代时这个子组匹配到的字符串。为了做这种工作,
模式必须满足这样一个条件,模式在第一次迭代的时候,
必须能够保证不需要匹配后向引用。
这种条件可以像上面的例子用可选路径来实现,也可以通过使用最小值为 0
的量词修饰后向引用的方式来完成。
转义序列 \g
可以用于子模式的绝对引用和相对引用。
这个转义序列必须紧跟一个无符号数字或一个负数,
可以选择性的使用括号对数字进行包裹。 序列\1
,
\g1
,\g{1}
之间是同义词关系。
这种用法可以消除使用反斜线紧跟数值描述反向引用时候产生的歧义。
这种转义序列有利于区分后向引用和八进制数字字符,
也使得后向引用后面紧跟一个原文匹配数字变的更明了,比如
\g{2}1
。
\g
转义序列紧跟一个负数代表一个相对的后向引用。比如:
(foo)(bar)\g{-1}
可以匹配字符串 ”foobarbar”,
(foo)(bar)\g{-2}
可以匹配 ”foobarfoo”。
这在长的模式中作为一个可选方案,
用来保持对之前一个特定子组的引用的子组序号的追踪。
后向引用也支持使用子组名称的语法方式描述:
(?P=name)
、\k<name>
、
\k’name’
、\k{name}
、
\g{name}
、\g<name>
、
\g'name'
。
用户贡献的备注 2 notes
Something similar opportunity is DEFINE.
Example:
(?(DEFINE)(?<myname>\bvery\b))(?&myname)\p{Pd}(?&myname).
Expression above will match "very-very" from next sentence:
Define is very-very handy sometimes.
^-------^
How it works. (?(DEFINE)(?<myname>\bvery\b)) - this block defines "myname" equal to "\bvery\b". So, this block "(?&myname)\p{Pd}(?&myname)" equvivalent to "\bvery\b\p{Pd}\bvery\b".
The escape sequence \g used as a backreference may not always behave as expected.
The following numbered backreferences refer to the text matching the specified capture group, as documented:
\1
\g1
\g{1}
\g-1
\g{-1}
However, the following variants refer to the subpattern code instead of the matched text:
\g<1>
\g'1'
\g<-1>
\g'-1'
With named backreferences, we may also use the \k escape sequence as well as the (?P=...) construct. The following combinations also refer to the text matching the named capture group, as documented:
\g{name}
\k{name}
\k<name>
\k'name'
(?P=name)
However, these refer to the subpattern code instead of the matched text:
g<name>
\g'name'
In the following example, the capture group searches for a single letter 'a' or 'b', and then the backreference looks for the same letter. Thus, the patterns are expected to match 'aa' and 'bb', but not 'ab' nor 'ba'.
<?php
/* Matches to the following patterns are replaced by 'xx' in the subject string 'aa ab ba bb'. */
$patterns = [
# numbered backreferences (absolute)
'/([ab])\1/', // 'xx ab ba xx'
'/([ab])\g1/', // 'xx ab ba xx'
'/([ab])\g{1}/', // 'xx ab ba xx'
'/([ab])\g<1>/', // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
"/([ab])\g'1'/", // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
'/([ab])\k{1}/', // 'aa ab ba bb' # No group with name "1", backreference to unset group always fails.
'/([ab])\k<1>/', // 'aa ab ba bb' # No group with name "1", backreference to unset group always fails.
"/([ab])\k'1'/", // 'aa ab ba bb' # No group with name "1", backreference to unset group always fails.
'/([ab])(?P=1)/', // NULL # Regex error: "subpattern name must start with a non-digit", (?P=) expects name not number.
# numbered backreferences (relative)
'/([ab])\-1/', // 'aa ab ba bb'
'/([ab])\g-1/', // 'xx ab ba xx'
'/([ab])\g{-1}/', // 'xx ab ba xx'
'/([ab])\g<-1>/', // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
"/([ab])\g'-1'/", // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
'/([ab])\k{-1}/', // 'aa ab ba bb' # No group with name "-1", backreference to unset group always fails.
'/([ab])\k<-1>/', // 'aa ab ba bb' # No group with name "-1", backreference to unset group always fails.
"/([ab])\k'-1'/", // 'aa ab ba bb' # No group with name "-1", backreference to unset group always fails.
'/([ab])(?P=-1)/', // NULL # Regex error: "subpattern name expected", (?P=) expects name not number.
# named backreferences
'/(?<name>[ab])\g{name}/', // 'xx ab ba xx'
'/(?<name>[ab])\g<name>/', // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
"/(?<name>[ab])\g'name'/", // 'xx xx xx xx' # unexpected behavior, backreference matches both 'a' and 'b'.
'/(?<name>[ab])\k{name}/', // 'xx ab ba xx'
'/(?<name>[ab])\k<name>/', // 'xx ab ba xx'
"/(?<name>[ab])\k'name'/", // 'xx ab ba xx'
'/(?<name>[ab])(?P=name)/', // 'xx ab ba xx'
];
foreach ($patterns as $pat)
echo " '$pat',\t// " . var_export(@preg_replace($pat, 'xx', 'aa ab ba bb'), 1) . PHP_EOL;
?>
备份地址:http://www.lvesu.com/blog/php/regexp.reference.back-references.php