如何替换 Perl 中不属于锚标记的文本?
什么是可以替换不属于锚标记的选定文本的 Perl 正则表达式?例如,我想仅替换以下代码中的最后一个“文本”。
blah <a href="http://www.text.com"> blah text blah </a> blah text blah.
谢谢。
What is a Perl regex that can replace select text that is not part of an anchor tag? For example I would like to replace only the last "text" in the following code.
blah <a href="http://www.text.com"> blah text blah </a> blah text blah.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不想尝试使用正则表达式解析 HTML。请尝试 HTML::TreeBuilder 。
You don't want to try to parse HTML with a regex. Try HTML::TreeBuilder instead.
我暂时占了上风:
但我对 开创性文本;因此,我们将在后续努力中追求 Treebuilder。
I have temporarily prevailed:
but I was dispirited, dismayed, and enervated by the seminal text; and so shall pursue Treebuilder in subsequent endeavors.
不要将正则表达式用于此类内容。使用一些适当的 HTML 解析器,并且只需对您感兴趣的 html 部分使用纯正则表达式即可。
Don't use regexps for this kind of stuff. Use some proper HTML parser, and simply use plain regexp for parts of html that you're interested in.