正则表达式帮助,查找关键字的前 3 次出现并 str_ireplace 内容
给定一个文本块,我需要解析它是否存在关键字。然后,在关键字第一次出现时,我需要在其周围加上粗体标签(如果还没有),在关键字第二次出现时,使用斜体,在第三次出现时,使用下划线。
使用关键字“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您需要一个基于 PHP 的解决方案,因为您提到了
str_ireplace
。您可以使用 preg_replace_callback 来完成此操作.
该函数与
preg_replace
类似,但调用用户定义的回调函数,其返回值将用于替换。为了跟踪出现次数,我在回调函数中使用了静态变量。
实际代码
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.Code In Action