php – preg_match用于评论的某些部分

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – preg_match用于评论的某些部分脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我想找到评论的某些部分.以下是一些例子

/*
 * @todo name another-name taskID
 */

/* @todo name another-name taskID */

目前我使用以下正则表达式

'/\*[[:space:]]*(?=@todo(.*))/i'

这返回以下内容

* @todo name another-name taskID
or
* @todo name another-name taskID */

我怎么能得到@todo和名字,但不是任何星号?

期望的输出

@todo name another-name taskID
@todo name another-name taskID

解决方法

试试这个:

$str=<<<STR
/*
 * @todo name another-name taskID 1
 */

/* @todo name another-name taskID 2 */
STR;
$match=null;
preg_match_all("/\*[[:space:]]*(@todo[^(\*\/$)]*)/i",$str,$match,PREG_SET_ORDER);
print_r($match);

回声

Array
(
    [0] => Array
        (
            [0] => * @todo name another-name taskID 1

            [1] => @todo name another-name taskID 1

        )

    [1] => Array
        (
            [0] => * @todo name another-name taskID 2 
            [1] => @todo name another-name taskID 2 
        )

)

虽然不是一个完美的解决方案(注意$match [0] [0]中的行结尾).

脚本宝典总结

以上是脚本宝典为你收集整理的php – preg_match用于评论的某些部分全部内容,希望文章能够帮你解决php – preg_match用于评论的某些部分所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。