正则表达式帮助,查找关键字的前 3 次出现并 str_ireplace 内容

发布于 2024-09-29 19:10:35 字数 357 浏览 1 评论 0原文

给定一个文本块,我需要解析它是否存在关键字。然后,在关键字第一次出现时,我需要在其周围加上粗体标签(如果还没有),在关键字第二次出现时,使用斜体,在第三次出现时,使用下划线。

使用关键字“help”的示例:

这是一些带有关键字“help”的文本。如果您能提供帮助,我真的很感激。感谢您的帮助!如果关键字 help 再次出现,我将忽略它们。

将被重写为...

这是一些带有关键字“help”的文本。如果您能提供帮助,我真的很感激。感谢您的帮助!如果关键字 help 再次出现,我将忽略它们。

Given a block of text, I need to parse it for the existing of a keyword. Then on the first appearance of the keyword, I need to wrap bold tags around it (if it doesn't already have them), on the second appearance of the keyword, italics, and on the third, underline.

Example using the keyword "help":

This is some text with the keyword "help". If you can help, I really appreciate it. Thanks for the help! If there are any more occurrences of the keyword help, I'll ignore them.

Would be rewritten to be...

This is some text with the keyword "<b>help</b>". If you can <em>help</em>, I really appreciate it. Thanks for the <u>help</u>! If there are any more occurrences of the keyword help, I'll ignore them.

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

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

发布评论

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

评论(1

情深缘浅 2024-10-06 19:10:35

我假设您需要一个基于 PHP 的解决方案,因为您提到了 str_ireplace

您可以使用 preg_replace_callback 来完成此操作.
该函数与preg_replace类似,但调用用户定义的回调函数,其返回值将用于替换。

为了跟踪出现次数,我在回调函数中使用了静态变量。

$keyword = 'help';

// the callback function
function fun($matches)
{
        static $count = 0;

        // switch on $count and later increment $count.
        switch($count++) {
                case 0: return '<b>'.$matches[1].'</b>';   // 1st time..use bold
                case 1: return '<em>'.$matches[1].'</em>'; 
                case 2: return '<u>'.$matches[1].'</u>';
                default: return $matches[1];              // don't change others.
        }
}

// search for keyword separated by word boundaries.
// if present call the callback function.
$text = preg_replace_callback("/\b($keyword)\b/","fun",$text);

实际代码

I'm assuming you need a PHP based solution because you mentioned str_ireplace.

You can do it using preg_replace_callback.
This function is similar to preg_replace but calls a user-defined callback function whose return value will be used for replacement.

To keep track of the occurrence number I've used a static variable in the callback function.

$keyword = 'help';

// the callback function
function fun($matches)
{
        static $count = 0;

        // switch on $count and later increment $count.
        switch($count++) {
                case 0: return '<b>'.$matches[1].'</b>';   // 1st time..use bold
                case 1: return '<em>'.$matches[1].'</em>'; 
                case 2: return '<u>'.$matches[1].'</u>';
                default: return $matches[1];              // don't change others.
        }
}

// search for keyword separated by word boundaries.
// if present call the callback function.
$text = preg_replace_callback("/\b($keyword)\b/","fun",$text);

Code In Action

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