正则表达式捕获最后一个

标记并用一些文本替换它

发布于 2024-10-07 22:36:24 字数 330 浏览 3 评论 0原文

我想捕捉决赛

tag in a string. Here's what I came up with:

 /(</p>)$/

这是否会在如下所示的典型 html 脚本中引起任何问题:

<p>Copyright 2010 &copy;</p>
<p>Sanscode</p>

它似乎工作正常,但由于我是正则表达式的新手,我想知道是否有人有任何警告或需要我注意的事情。我正在使用 preg_replace()。

谢谢

I want to capture the final

tag in a string. Here's what I came up with:

 /(</p>)$/

Is this going to cause any problems in a typical html script that looks like this:

<p>Copyright 2010 ©</p>
<p>Sanscode</p>

It seems to work fine, but since i'm new to regex I was wondering if anyone had any caveats or things for me to note. I am using preg_replace().

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡紫姑娘! 2024-10-14 22:36:24

如果最后一个尖括号后面有空格字符,它将不匹配。

It would not match, if there are whitespace characters behind the last angel bracket.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文