• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • 转义序列(反斜线)

    反斜线有多种用法。

    首先,如果紧接着是一个非字母数字字符,表明取消 该字符所代表的特殊涵义。这种将反斜线作为转义字符的用法在字符类 内部和外部都可用。

    比如,如果你希望匹配一个 "*" 字符,就需要在模式中写为 "\*"。

    这适用于一个字符在进行转义后不会有特殊含义的情况下。 但是, 对于非数字字母的字符,总是在需要其进行原文匹配的时候在它前面增加一个反斜线, 来声明它代表自己,这是安全的。如果要匹配一个反斜线\,那么在模式中使用\\

    Note:
    反斜线在单引号字符串和双引号字符串 中都有特殊含义,因此要匹配一个反斜线, 模式中必须写为 “\\\\”。 译注: “/\\/”, 首先它作为字符串,反斜线会进行转义, 那么转义后的结果是/\/,这个才是正则表达式引擎拿到的模式, 而正则表达式引擎也认为\是转义标记,它会将分隔符/进行转义, 从而得到的是一个错误,因此,需要 4 个反斜线才可以匹配一个反斜线。

    如果一个模式被使用 PCRE_EXTENDED 选项编译, 模式中的空白字符(除了字符类中的)和未转义的#到行末的所有字符都会被忽略。 要在这种情况下使用空白字符或者#,就需要对其进行转义。

    反斜线的第二种用途提供了一种对非打印字符进行可见编码的控制手段。

    除了二进制的 0 会终结一个模式外,并不会严格的限制非打印字符(自身)的出现, 但是当一个模式以文本编辑器的方式编辑准备的时候, 使用下面的转义序列相比使用二进制字符会更加容易。

    • \a:响铃字符(十六进制 07)
    • \cx:"control-x",x 是任意字符
    • \e:转义 (十六进制 1B)
    • \f:换页 (十六进制 0C)
    • \n:换行 (十六进制 0A)
    • \p{xx}:一个符合 xx 属性的字符,详细查看unicode properties 属性
    • \P{xx}:一个不符合xx属性的字符,详细查看unicode properties 属性
    • \r:回车 (十六进制 0D)
    • \t:水平制表符 (十六进制 09)
    • \xhh:hh十六进制编码的字符,详细查看unicode properties 属性
    • \ddd:ddd八进制编码的字符,或者后向引用
    \cx的确切效果如下: 如果x是一个小写字母,它被转换为大写。接着, 将字符的第6位(十六进制 40,右数第一个位为第0位)取反。 比如\cz成为十六进制的1A,\c{成为十六进制3B, \c;成为十六进制7B。
    在"\x"后面,读取两个十六进制数(字母可以是大写或小写)。 在UTF-8模式, “\x{…}”允许使用, 花括号内的内容是十六进制有效数字。 它将给出的十六进制数字解释为 UTF-8 字符代码。原来的十六进制转义序列, \xhh, 匹配一个双字节的UTF-8字符,如果它的值大于127
    在"\0"之后, 读取两个八进制数。所有情况下,如果数少于2个,则直接使用。 序列 ”\0\x\07” 指定了两个二进制 0 紧跟着一个 BEL 字符。 请确保初始的 0 之后的两个数字是合法的八进制数。

    处理一个反斜线紧跟着的不是0的数字的情况比较复杂。在字符类外部, PCRE 读取它并以十进制读取紧随其后的数字。 如果数值小于 10, 或者之前捕获到了该数字能够代表的左括号(子组), 整个数字序列被认为是后向引用。后向引用如何工作在后面描述, 接下来就会讨论括号子组。

    在一个字符类里面,或者十进制数大于 9 并且没有那么多的子组被捕获, PCRE 重新读取反斜线后的第三个 8 进制数字,并且从最低的 8 位生成单字节值。 任何的后续数字都代表它们自身。例如:

    • \040:空格的另外一种用法
    • \40:当提供了少于40个子组时也认为是空格。
    • \7:始终是后向引用
    • \11:可能是后向引用,也可能是制表符
    • \011:总是一个制表符
    • \0113:一个制表符紧跟着一个3(因为每次最多只读取3个8进制位
    • \113:八进制113代表的字符
    • \377:8进制377是10进制255, 因此代表一个全1的字符
    • \81:一个后向引用或者一个二进制 0 紧跟着两个数字 8 和 1(因为8不是8进制有效数字)

    注意,八进制值的 100 或者更大的值必须没有前置的0引导, 因为每次最多读取3个8进制位.

    所有序列定义的单字节值都可以在字符类内部或外部使用。另外,在字符类中, 序列 ”\b” 解释为退格字符。字符类外它又有不同的意义(下面有描述)

    反斜线的第三种用法是用来描述特定的字符类:

  • \d:任意十进制数字
  • \D:任意非十进制数字
  • \h:任意水平空白字符(since PHP 5.2.4)
  • \H:任意非水平空白字符(since PHP 5.2.4)
  • \s:任意空白字符
  • \S:任意非空白字符
  • \v:任意垂直空白字符(since PHP 5.2.4)
  • \V:任意非垂直空白字符(since PHP 5.2.4)
  • \w:任意单词字符
  • \W:任意非单词字符
  • 上面每一对转义序列都代表了完整字符集中两个不相交的部分, 任意字符一定会匹配其中一个,同时一定不会匹配另外一个。

    单词字符指的是任意字母、数字、下划线。 也就是说任意可以组成perl单词的字符。 字母和数字的定义通过PCRE字符表控制,可以通过指定地域设置使其匹配改变。比如, 在法国 (fr) 地域设置中,一些超过 128 的字符代码被用于重音字母, 它们可以实用 \w 匹配。

    这些字符类序列在字符类内部或外部都可以出现。 他们每次匹配所代表的字符类型中的一个字符。 如果当前匹配点位于目标字符串末尾, 它们中的所有字符都匹配失败, 因为没有字符让它们匹配了。

    反斜线的第四种用法是一些简单的断言。

    一个断言指定一个必须在特定位置匹配的条件, 它们不会从目标字符串中消耗任何字符。 接下来我们会讨论使用子组的更加复杂的断言。 反斜线断言包括:

    • \b:单词边界
    • \B:非单词边界
    • \A:目标的开始位置(独立于多行模式)
    • \Z:目标的结束位置或结束处的换行符(独立于多行模式)
    • \z:目标的结束位置(独立于多行模式)
    • \G:在目标中首次匹配位置

    这些断言不能出现在字符类中(但是注意, “\b”在字符类中有不同的意义, 表示的是退格(backspace)字符)

    一个单词边界表示的是在目标字符串中, 当前字符和前一个字符不同时匹配\w或\W(一个比配\w, 一个匹配\W), 或者作为字符串开始或结尾字符的时候当前字符匹配\w。

    \A, \Z, \z断言不同于传统的^和$(详见下文), 因为他们永远匹配目标字符串的开始和结尾,而不会受模式修饰符的限制。 它们不受PCRE_MULTILINE,PCRE_DOLLAR_ENDONLY选项的影响。 \Z 和 \z 之间的不同在于当字符串结束字符时换行符时 \Z 会将其看做字符串结尾匹配, 而 \z 只匹配字符串结尾。

    \G 断言在指定了$offset 参数的preg_match() 调用中, 仅在当前匹配位置在匹配开始点的时候才是成功的。 当 $offset 的值不为 0 的时候, 它与 \A 是不同的。 译注:另外一点与 \A 的不同之处在于使用 preg_match_all() 时, 每次匹配 \G 只是断言是否是匹配结果的开始位置, 而 \A 断言的则是匹配结果的开始位置是否在目标字符串开始位置。

    自 PHP 4.3.3开始, \Q 和 \E 可以用于在模式中忽略正则表达式元字符。比如: \w+\Q.$.\E$ 会匹配一个或多个单词字符,紧接着一个点号,一个$,一个点号, 最后锚向字符串末尾。

    自 PHP 5.2.4 开始。 \K 可以用于重置匹配。 比如, foot\Kbar 匹配”footbar”。 但是得到的匹配结果是 ”bar”。但是, \K 的使用不会干预到子组内的内容, 比如 (foot)\Kbar 匹配 ”footbar”,第一个子组内的结果仍然会是 ”foo”。译注: \K 放在子组和子组外面的效果是一样的。

    "line break" is ill-defined:
     -- Windows uses CR+LF (\r\n)
     -- Linux LF (\n)
     -- OSX CR (\r)
    Little-known special character:
    \R in preg_* matches all three.
    preg_match( '/^\R$/', "match\nany\\n\rline\r\nending\r" ); // match any line endings
    Significantly updated version (with new $pat4 utilising \R properly, its results and comments):
    Note that there are (sometimes difficult to grasp at first glance) nuances of meaning and application of escape sequences like \r, \R and \v - none of them is perfect in all situations, but they are quite useful nevertheless. Some official PCRE control options and their changes come in handy too - unfortunately neither (*ANYCRLF), (*ANY) nor (*CRLF) is documented here on php.net at the moment (although they seem to be available for over 10 years and 5 months now), but they are described on Wikipedia ("Newline/linebreak options" at https://en.wikipedia.org/wiki/Perl_Compatible_Regular_Expressions) and official PCRE library site ("Newline convention" at http://www.pcre.org/original/doc/html/pcresyntax.html#SEC17) pretty well. The functionality of \R appears somehow disappointing (with default configuration of compile time option) according to php.net as well as official description ("Newline sequences" at https://www.pcre.org/original/doc/html/pcrepattern.html#newlineseq) when used improperly.
    A hint for those of you who are trying to fight off (or work around at least) the problem of matching a pattern correctly at the end ($) of any line in multiple lines mode (/m).
    <?php 
    // Various OS-es have various end line (a.k.a line break) chars:
    // - Windows uses CR+LF (\r\n);
    // - Linux LF (\n);
    // - OSX CR (\r).
    // And that's why single dollar meta assertion ($) sometimes fails with multiline modifier (/m) mode - possible bug in PHP 5.3.8 or just a "feature"(?).
    $str="ABC ABC\n\n123 123\r\ndef def\rnop nop\r\n890 890\nQRS QRS\r\r~-_ ~-_";
    //     C     3          p     0          _
    $pat1='/\w$/mi';  // This works excellent in JavaScript (Firefox 7.0.1+)
    $pat2='/\w\r?$/mi';  // Slightly better
    $pat3='/\w\R?$/mi';  // Somehow disappointing according to php.net and pcre.org when used improperly
    $pat4='/\w(?=\R)/i';  // Much better with allowed lookahead assertion (just to detect without capture) without multiline (/m) mode; note that with alternative for end of string ((?=\R|$)) it would grab all 7 elements as expected
    $pat5='/\w\v?$/mi';
    $pat6='/(*ANYCRLF)\w$/mi';  // Excellent but undocumented on php.net at the moment (described on pcre.org and en.wikipedia.org)
    $n=preg_match_all($pat1, $str, $m1);
    $o=preg_match_all($pat2, $str, $m2);
    $p=preg_match_all($pat3, $str, $m3);
    $r=preg_match_all($pat4, $str, $m4);
    $s=preg_match_all($pat5, $str, $m5);
    $t=preg_match_all($pat6, $str, $m6);
    echo $str."\n1 !!! $pat1 ($n): ".print_r($m1[0], true)
      ."\n2 !!! $pat2 ($o): ".print_r($m2[0], true)
      ."\n3 !!! $pat3 ($p): ".print_r($m3[0], true)
      ."\n4 !!! $pat4 ($r): ".print_r($m4[0], true)
      ."\n5 !!! $pat5 ($s): ".print_r($m5[0], true)
      ."\n6 !!! $pat6 ($t): ".print_r($m6[0], true);
    // Note the difference among the three very helpful escape sequences in $pat2 (\r), $pat3 and $pat4 (\R), $pat5 (\v) and altered newline option in $pat6 ((*ANYCRLF)) - for some applications at least.
    /* The code above results in the following output:
    ABC ABC
    123 123
    def def
    nop nop
    890 890
    QRS QRS
    ~-_ ~-_
    1 !!! /\w$/mi (3): Array
    (
      [0] => C
      [1] => 0
      [2] => _
    )
    2 !!! /\w\r?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    )
    3 !!! /\w\R?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    )
    4 !!! /\w(?=\R)/i (6): Array
    (
      [0] => C
      [1] => 3
      [2] => f
      [3] => p
      [4] => 0
      [5] => S
    )
    5 !!! /\w\v?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    )
    6 !!! /(*ANYCRLF)\w$/mi (7): Array
    (
      [0] => C
      [1] => 3
      [2] => f
      [3] => p
      [4] => 0
      [5] => S
      [6] => _
    )
     */
    ?>
    Unfortunately, I haven't got any access to a server with the latest PHP version - my local PHP is 5.3.8 and my public host's PHP is version 5.2.17.
    As \v matches both single char line ends (CR, LF) and double char (CR+LF, LF+CR), it is not a fixed length atom (eg. is not allowed in lookbehind assertions).
    Required to use \007 instead of \a
    A non breaking space is not considered as a space and cannot be caught by \s.
    it can be found with : 
    - [\xc2\xa0] in utf-8
    - \x{00a0} in unicode
    You can use Unicode character escape sequences (tested on PHP 5.3.3 & PCRE 7.8).
    <?php
    //This source is supposed to be written in UTF-8.
    $a='€';
    var_dump(preg_match('/\\x{20ac}/u',$a)); //Match!
    A hint for those of you who are trying to fight off (or work around at least) the problem of matching a pattern correctly at the end ($) of any line in multiple lines mode (/m).
    <?php 
    // Various OS-es have various end line (a.k.a line break) chars:
    // - Windows uses CR+LF (\r\n);
    // - Linux LF (\n);
    // - OSX CR (\r).
    // And that's why single dollar meta assertion ($) sometimes fails with multiline modifier (/m) mode - possible bug in PHP 5.3.8 or just a "feature"(?).
    $str="ABC ABC\n\n123 123\r\ndef def\rnop nop\r\n890 890\nQRS QRS\r\r~-_ ~-_";
    //     C     3          p     0          _
    $pat1='/\w$/mi';  // This works excellent in JavaScript (Firefox 7.0.1+)
    $pat2='/\w\r?$/mi';
    $pat3='/\w\R?$/mi';  // Somehow disappointing according to php.net and pcre.org
    $pat4='/\w\v?$/mi';
    $pat5='/(*ANYCRLF)\w$/mi';  // Excellent but undocumented on php.net at the moment
    $n=preg_match_all($pat1, $str, $m1);
    $o=preg_match_all($pat2, $str, $m2);
    $p=preg_match_all($pat3, $str, $m3);
    $r=preg_match_all($pat4, $str, $m4);
    $s=preg_match_all($pat5, $str, $m5);
    echo $str."\n1 !!! $pat1 ($n): ".print_r($m1[0], true)
      ."\n2 !!! $pat2 ($o): ".print_r($m2[0], true)
      ."\n3 !!! $pat3 ($p): ".print_r($m3[0], true)
      ."\n4 !!! $pat4 ($r): ".print_r($m4[0], true)
      ."\n5 !!! $pat5 ($s): ".print_r($m5[0], true);
    // Note the difference among the three very helpful escape sequences in $pat2 (\r), $pat3 (\R), $pat4 (\v) and altered newline option in $pat5 ((*ANYCRLF)) - for some applications at least.
    /* The code above results in the following output:
    ABC ABC
    123 123
    def def
    nop nop
    890 890
    QRS QRS
    ~-_ ~-_
    1 !!! /\w$/mi (3): Array
    (
      [0] => C
      [1] => 0
      [2] => _
    )
    2 !!! /\w\r?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    )
    3 !!! /\w\R?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    ) 
    4 !!! /\w\v?$/mi (5): Array
    (
      [0] => C
      [1] => 3
      [2] => p
      [3] => 0
      [4] => _
    )
    5 !!! /(*ANYCRLF)\w$/mi (7): Array
    (
      [0] => C
      [1] => 3
      [2] => f
      [3] => p
      [4] => 0
      [5] => S
      [6] => _
    )
     */
    ?>
    Unfortunately, I haven't got any access to a server with the latest PHP version - my local PHP is 5.3.8 and my public host's PHP is version 5.2.17.
    Using \R in character classes is NOT possible:
    var_dump( preg_match('#\R+#',"\n") ); -> int(1)
    var_dump( preg_match('#[\R]+#',"\n") ); -> int(0)
    Some escape sequence like the tab character \t won't work inside single quotes '\t', But they work inside double quotes.
    Other escape sequences like the backspace character won't work unless you use its ascii codepoint and chr() function i.e. chr(8)
    The pattern "/\\A/" may be replaced by "/\\\A/" in order to match a "\A" string. Any other escaped "\" looks to work fine so you can use "/\\S/", for instance, to match a "\S" string.
    \b BS
    $str="\x08\x08\x08\x08\x08\x08\x08\x08\x08"
    $str =str_replace("\b", "", $str);
    //echo \x08\x08\x08\x08\x08\x08\x08\x08\x08
    $str =str_replace(chr(8), "", $str);
    //echo 
    $str =str_replace("\\b", "", $str);
    //echo

    上篇:元字符

    下篇:Unicode字符属性