我正在尝试提取和替换维基百科花括号内容,但没有成功。
在下面的字符串中,我希望能够替换{{Nihongo|Pang|パン|Pan}}
为Pang
$text = "Buster Bros, also called {{Nihongo|Pang|パン|Pan}} and {{Nihongo|Pomping World|ãƒãƒ³ãƒ”ング・ワールド|Ponpingu WÄrudo|lead=yes}}, is a cooperative two-player arcade video game released in 1989 by Capcom";
我在我的 preg_replace 中尝试了许多正则表达式组合,例如下面的组合,但到目前为止没有运气
$text = preg_replace('/\{\{({^:\|\}}+)\|({^:\}}+)\}\}/', "$2", $text);