繁体   English   中英

PHP PCRE允许在字符串中嵌套模式(递归)

[英]PHP PCRE allow nested patterns (recursion) in a string

我得到了像1(8()3(6()7())9()3())2(4())3()1(0()3())这样的字符串,它表示一棵树。 如果我们更深一层,将出现一个括号。 在同一级别上的数字是邻居。

现在要添加节点,比如我想将增加5到,我们有一个每路1对第一和3在第二个层次,所以我想提出一个5()每经过3(这是内部a 1( 。因此必须将5()相加3次,结果应为1(8()3(5()6()7())9()3(5()))2(4())3()1(0()3(5()))

问题是,我没有使用PCRE递归的代码。 如果我匹配不带固定路径(如1(3(的树表示字符串,它会起作用,但是当我生成具有这些固定模式的正则表达式时,它将不起作用。

这是我的代码:

<?php
header('content-type: text/plain;utf-8');

$node = [1, 3, 5];
$path = '1(8()3(6()7())9()3())2(4())3()1(0()3())';

echo $path.'
';

$nes = '\((((?>[^()]+)|(?R))*)\)';
$nes = '('.$nes.')*';

echo preg_match('/'.$nes.'/x', $path) ? 'matches' : 'matches not';
echo '
';

// creates a regex with the fixed path structure, but allows nested elements in between
// in this example something like: /^anyNestedElementsHere 1( anyNestedElementsHere 3( anyNestedElementsHere ))/
$re = $nes;
for ($i = 0; $i < count($node)-1; $i++) {
    $re .= $node[$i].'\(';
    if ($i != count($node)-2)
        $re .= $nes;
}
$re = '/^('.$re.')/x';

echo str_replace($nes, '   '.$nes.'   ', $re).'
';
echo preg_match($re, $path) ? 'matches' : 'matches not';
echo '
';
// append 5()
echo preg_replace($re, '${1}'.$node[count($node)-1].'()', $path);
?>

这是输出,您可以在其中查看生成的正则表达式的样子:

1(8()3(6()7())9()3())2(4())3()1(0()3())
matches
/^(   (\((((?>[^()]+)|(?R))*)\))*   1\(   (\((((?>[^()]+)|(?R))*)\))*   3\()/x
matches not
1(8()3(6()7())9()3())2(4())3()1(0()3())

希望您理解我的问题,希望您能告诉我我的错误在哪里。

非常感谢!

正则表达式

下面的正则表达式递归匹配嵌套的括号,在第一层找到一个开口1(在第二层上找到一个开口3( (作为直接子代)。它也尝试连续的匹配,无论是在同一层上还是在相应层上向下水平找到另一个匹配。

~
(?(?=\A)  # IF: First match attempt (if at start of string)   - -

  # we are on 1st level => find next "1("

  (?<balanced_brackets>
    # consumes balanced brackets recursively where there is no match
    [^()]*+
    \(  (?&balanced_brackets)*?  \)
  )*?

  # match "1(" => enter level 2
  1\(

|         # ELSE: Successive matches  - - - - - - - - - - - - - -

  \G    # Start at end of last match (level 3)

  # Go down to level 2 - match ")"
  (?&balanced_brackets)*?
  \)

  # or go back to level 1 - matching another ")"
  (?>
    (?&balanced_brackets)*?
    \)

    # and enter level 2 again
    (?&balanced_brackets)*?
    1\(
  )*?
)                                      # - - - - - - - - - - - -

# we are on level 2 => consume balanced brackets and match "3("
(?&balanced_brackets)*?
3\K\(  # also reset the start of the match
~x

替代

(5()

文本

Input:
1(8()3(6()7())9()3())2(4())3()1(0()3())

Output:
1(8()3(5()6()7())9()3(5()))2(4())3()1(0()3(5()))
       ^^^            ^^^                  ^^^
       [1]            [2]                  [3]

regex101演示


这个怎么运作

我们首先使用conditional subpattern来区分:

  • 第一次比赛尝试(从级别1开始)和
  • 连续尝试(从第3级开始,以\\G assertion锚)。
(?(?=\A)  # IF followed by start of string
    # This is the first attempt
|         # ELSE
    # This is another attempt
    \G    # and we'll anchor it to the end of last match
)

对于第一个匹配项 ,我们将使用所有不匹配1(嵌套括号,以便将光标移到第一级可以找到成功匹配项的位置。

  • 这是匹配嵌套构造的众所周知的递归模式。 如果您不熟悉它,请参阅Recursion和子Subroutines
(?<balanced_brackets>        # ANY NUMBER OF BALANCED BRACKETS
  [^()]*+                    # match any characters 
  \(                         # opening bracket
    (?&balanced_brackets)*?  #  with nested bracket (recursively)
  \)                         # closing bracket in the main level
)*?                          # Repeated any times (lazy)

注意,这是一个named group ,我们将在模式中将其多次用作子例程调用,以消耗不需要的平衡括号,例如(?&balanced_brackets)*?

下一级 现在,要进入级别2,我们需要匹配:

1\(

最后,我们将消耗所有平衡的括号,直到找到第3级的开头:

(?&balanced_brackets)*?
3\(

而已。 我们刚刚匹配了第一个匹配项,因此我们可以在该位置插入替换文本。

下一场比赛 对于连续的匹配尝试,我们可以:

  • 下降到与关闭匹配的第2级)以查找另一次出现3(
  • 进一步下降到1级,匹配2个close ) ,然后从那里匹配与第一个匹配相同的策略。

这可以通过以下子模式实现:

\G                             # anchored to the end of last match (level 3)
(?&balanced_brackets)*?        # consume any balanced brackets
\)                             # go down to level 2
                               #
(?>                            # And optionally
  (?&balanced_brackets)*?      #   consume level 2 brackets
  \)                           #   to go down to level 1
  (?&balanced_brackets)*?      #   consume level 1 brackets
  1\(                          #   and go up to level 2 again
)*?                            # As many times as it needs to (lazy)

总结一下,我们可以匹配第三个级别的开头:

(?&balanced_brackets)*?
3\(

我们还将在模式结尾附近使用\\K 重置比赛开始 ,以仅匹配最后一个左括号。 因此,我们可以简单地用(5()代替,避免使用反向引用。


PHP代码

我们只需要使用上面使用的相同值调用preg_replace()

Ideone演示


为什么您的正则表达式失败?

如您所问,该模式已锚定到字符串的开头。 它只能匹配第一个匹配项。

/^(   (\((((?>[^()]+)|(?R))*)\))*   1\(   (\((((?>[^()]+)|(?R))*)\))*   3\()/x

而且,它不匹配第一次出现,因为构造(?R)递归了整个模式(试图再次匹配^ )。 我们可以将(?R)更改为(?2)

但是,主要原因是因为它在任何打开\\(之前都没有消耗字符。例如:

Input:
1(8()3(6()7())9()3())2(4())3()1(0()3())
  ^
  #this "8" can't be consumed with the pattern

还应考虑一种行为: PCRE将递归视为atomic 因此,您必须确保模式会像上面的示例一样使用不需要的括号,但也要避免在各自的级别匹配1(3(

我将这个问题分解为两个较小的部分:

首先,使用以下正则表达式提取1节点:

(?(DEFINE)
  (?<tree>
    (?: \d+ \( (?&tree) \) )*
  )
)
\b 1 \( (?&tree) \)

演示

为此使用preg_replace_callback 这将匹配1(8()3(6()7())9()3())1(0()3())

接下来,只需要用3(5()替换3( 3(5()就可以了。

PHP中的示例:

$path = '1(8()3(6()7())9()3())2(4())3()1(0()3())';

$path = preg_replace_callback('#
    (?(DEFINE)
      (?<tree>
        (?: \d+ \( (?&tree) \) )*
      )
    )
    \b 1 \( (?&tree) \)
#x', function($m) {
    return str_replace('3(', '3(5()', $m[0]);
}, $path);

结果是: 1(8()3(5()6()7())9()3(5()))2(4())3()1(0()3(5()))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM