gpt4 book ai didi

php - 反向引用在 PHP 中不起作用

转载 作者:可可西里 更新时间:2023-10-31 22:45:36 24 4
gpt4 key购买 nike

最近我一直在研究(说实话,更多的是在实践中)正则表达式,我注意到了他的力量。我提出的这个要求(link),我知道“反向引用”。我想我理解它是如何工作的,它在 JavaScript 中有效,而在 PHP 中则不然。

例如我有这个字符串:

[b]Text B[/b]
[i]Text I[/i]
[u]Text U[/u]
[s]Text S[/s]

并使用以下正则表达式:

\[(b|i|u|s)\]\s*(.*?)\s*\[\/\1\]

regex101.com 上对其进行测试有效,对于 JavaScript 相同,但不适用于 PHP。

preg_replace 示例(不工作):

echo preg_replace(
"/\[(b|i|u|s)\]\s*(.*?)\s*\[\/\1\]/i",
"<$1>$2</$1>",
"[b]Text[/b]"
);

虽然这种方式有效:

echo preg_replace(
"/\[(b|i|u|s)\]\s*(.*?)\s*\[\/(b|i|u|s)\]/i",
"<$1>$2</$1>",
"[b]Text[/b]"
);

我不明白我哪里错了,感谢所有帮助我的人。

最佳答案

这是因为你使用了双引号字符串,双引号字符串中的 \1 被读作一个字符的八进制符号(控制字符 SOH = 标题开始),而不是一个逃脱了 1.

所以有两种方式:

使用单引号字符串:

'/\[(b|i|u|s)\]\s*(.*?)\s*\[\/\1\]/i'

或转义反斜杠以获得文字反斜杠(对于字符串,而不是模式):

"/\[(b|i|u|s)\]\s*(.*?)\s*\[\/\\1\]/i"

顺便说一句,你可以这样写你的模式:

$pattern = '~\[([bius])]\s*(.*?)\s*\[/\1]~i';

// with oniguruma notation
$pattern = '~\[([bius])]\s*(.*?)\s*\[/\g{1}]~i';

// oniguruma too but relative:
// (the second group on the left from the current position)
$pattern = '~\[([bius])]\s*(.*?)\s*\[/\g{-2}]~i';

关于php - 反向引用在 PHP 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30383383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com