Perl 如何去除嵌套的 bbcode 标签?
这是代码:
use perl5i::2;
my $string = '[size 9]Some larger text. [i]Italic[/i] here.[/size]And [b]bold[/b] text.';
$string =~ s/\[(.+).*?\](.+)\[\/\1\]/$2/gi;
$string->say;
结果在这里:
一些较大的文本。此处为[i]斜体[/i]。文本为粗体。
是否有一个正则表达式可以去除标签?
Here is the code:
use perl5i::2;
my $string = '[size 9]Some larger text. [i]Italic[/i] here.[/size]And [b]bold[/b] text.';
$string =~ s/\[(.+).*?\](.+)\[\/\1\]/$2/gi;
$string->say;
The result is here:
Some larger text. [i]Italic[/i] here.And bold text.
Is there a single regex to strip the tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只想删除标签,则实际上不需要确保标签匹配:只需删除方括号内的任何内容即可。
如果检查嵌套确实很重要,您可以简单地重复应用当前的替换。
If all you want to do is strip the tags, you don't really need to ensure that the tags match: just remove anything inside square brackets.
If checking for nesting really is important, you can simply apply your current substitution repeatedly.
您想删除所有标签吗?元素可以嵌套,但标签不能嵌套,所以实际上没有什么。
Do you want to strip all tags? Elements can be nested, but tags can't be nested, so there's nothing to it really.
Parse::BBCode 怎么样?
更新:
您不需要使用此模块输出 HTML。请尝试以下操作:
这样您就不必自己解析任何文本,这是一件好事™。
What about Parse::BBCode?
Update:
You don't need to output HTML with this module. Try the following instead:
This way you don't have to parse any text yourself, which is a Good Thing™.