如何使用preg_replace替换:
Some text is [[1]] and some is [[2]] bla bla...
进入这个:
Some text is 1.____________ and some is 2.____________ bla bla...
我有这个正则表达式,它能找到正确的匹配项,但我不知道如何在结果中添加替换数字?
preg_replace('(\[\[\d\]\])', '_______', $subject);
这让我得到了这个结果:
Some text is ____________ and some is ____________ bla bla...
最佳答案
您需要使用捕获组及其引用:
preg_replace('~\[\[(\d)\]\]~', '$1._______', $subject);