使用正则表达式转换 BBCode
我正在为网站构建自定义讨论板。 (该网站确实需要一个自定义的。:))我想做的是使用正则表达式来获取 [b] 并在输出中转入。然后还有其他样式 [img]example.jpg[/img] 并输出 <\img src= "example.jpg">。但到目前为止,我所尝试的一切似乎都不起作用。有人有任何例子说明这是如何工作的吗?
I am building a custom discussion board for a website. (The website does need a custom one. :) ) What I am trying to do is use regular expressions to take a [b] and turn into at the output. Then also the other style [img]example.jpg[/img] and output <\img src= "example.jpg">. But so far everything I have tried does not seem to be working. Does anyone have any examples of how this would work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Perl 中的简短解决方案是
在 php 中详细说明此解决方案是:
为了在 Perl 中更精确,您可以使用:
Jakub
The brief solution in perl is
To elaborate this solution in php would be:
To be more precise in perl you can use:
Jakub