php 正则表达式 [b] 到 ;
"'\[b\](.*?)\[/b\]'is",
我当前的正则表达式是否有效?但我想将 [] 更改为 <>反而。但它不起作用...除了 [] 我还需要改变什么。
"'\[b\](.*?)\[/b\]'is",
Is my current RegEx working. But I want to change the [] to be <> instead. But it doesn't work... What more then just the [] do I need to change.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有各种 BBCode 解析器 适用于 PHP,例如
允许您简单地手动定义替换规则:
另请检查有关 BBCode 解析器的各种类似问题:
There are various BBCode parsers available for PHP, for instance
which allows you to simply define your replacement rules by hand:
Also check the various similar questions about BBCode Parsers:
尝试使用
~
作为分隔符Try
~
as a delimiter instead