如何在php中删除这个标签?
我想从文本中剪切掉里面的所有内容(包括标签),例如:
[url=http://example.com]something[/url]
但有一个条件,在 [url]
标签内部会有 [img]
标签。 所以最后一句话要切:
[url=http://example.com]anything[img]something[/url]
有人能帮忙吗?我不擅长正则表达式,或者有更简单的方法吗?
I want cut out everything inside (tags included) from text, for ex:
[url=http://example.com]something[/url]
but with one condition, inside of [url]
tag there would be [img]
tag.
So final sentence to cut:
[url=http://example.com]anything[img]something[/url]
can anyone help? im bad with regular expressions, or there is easier way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个怎么样:
How about this:
我会尝试这些脚本行
结果是你想要的吗?
I would try these lines of scripts
Is the result what you want?