匹配时间和 IRC-Nick 的正则表达式

发布于 2024-11-23 20:21:15 字数 255 浏览 1 评论 0原文

我在正则表达式方面经验不是很丰富,并且我尝试了很多来匹配这样的字符串:

16:02 <DJ_Bjarne>

使用正则表达式,但我没有得到任何工作结果。 我希望将其替换为可

<strong>16:02&lt;DJ_Bjarne&gt;</strong>

在 PHP 中运行的正则表达式。 谢谢。

I'm not very experienced in regular expressions and I tried a lot to match a string like this:

16:02 <DJ_Bjarne>

with a regex, but I didn't get any working result.
I want this to be replaced by

<strong>16:02<DJ_Bjarne></strong>

with a regex that works in PHP.
Thank you.

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

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

发布评论

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

评论(4

小苏打饼 2024-11-30 20:21:15
$post = "16:02 < DJ_Bjarne> hello mate!";
preg_replace("/(.*?>)/", "<strong>$1</strong>", $post);
$post = "16:02 < DJ_Bjarne> hello mate!";
preg_replace("/(.*?>)/", "<strong>$1</strong>", $post);
无妨# 2024-11-30 20:21:15

这应该可以满足您的需要:

$string = preg_replace('/[0-9]{1,2}:[0-9]{1,2} <.*?>/', '<strong>$0</strong>', $string);

This should do what you need:

$string = preg_replace('/[0-9]{1,2}:[0-9]{1,2} <.*?>/', '<strong>$0</strong>', $string);
流星番茄 2024-11-30 20:21:15

尝试:

preg_replace('/[\d]{2}:[\d]{2} [\<][\w]+[\>]/', '<strong>${0}</strong>', $line)

Try:

preg_replace('/[\d]{2}:[\d]{2} [\<][\w]+[\>]/', '<strong>${0}</strong>', $line)
夜血缘 2024-11-30 20:21:15

y太复杂了

$text  = '16:02 <DJ_Bjarne>';
echo $text = preg_replace("/\A/",'<strong>',$text);
//echo "<textarea>";echo $text;echo "</textarea>";
$text = preg_replace("/\Z/",'</strong>',$text);
echo "<textarea>";echo $text;echo "</textarea>";

,简单易懂,参考< /a>

y Tooo complecated

$text  = '16:02 <DJ_Bjarne>';
echo $text = preg_replace("/\A/",'<strong>',$text);
//echo "<textarea>";echo $text;echo "</textarea>";
$text = preg_replace("/\Z/",'</strong>',$text);
echo "<textarea>";echo $text;echo "</textarea>";

its simple easy to understand, refference

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