douwei8672 2017-06-22 07:26
浏览 144
已采纳

preg_match_all匹配可选括号

Trying to preg_match_all

#THING or [#THING]

This works for the first

/(#[A-Z]+)/ 

For the other with brackets, I thought something like this should work, but it doesn't.

/(\[?#[A-Z]+\]?)/  

Ultimately, I want to match any of these

#THING [(#THING)] or [anything(#THING)anything]
  • 写回答

2条回答 默认 最新

  • dounie5475 2018-02-23 23:59
    关注

    This seems to be a robust/reliable pattern:

    ~#[A-Z]+|\[[^#\]]*\(#[A-Z]+\)[^\]]*]~

    Pattern Demo

    ~         #pattern delimiter
    #[A-Z]+   #match hash symbol followed by one or more uppercase letters
    |         #or
    \[        #match an opening square bracket
    [^#\]]*   #match zero or more non-hash/non-closing square bracket characters
    \(        #match opening parenthesis
    #[A-Z]+   #match hash symbol followed by one or more uppercase letters
    \)        #match closing parenthesis
    [^\]]*    #match zero or more non-closing square bracket characters
    ]         #match a closing square bracket
    ~         #pattern delimiter
    

    This pattern is looking for a "hashtag" substring with no [()] characters in it OR a "hashtag" substring that will be tightly wrapped in () then loosely wrapped in [] which may also contain some characters before the ( or after the ).

    This pattern is efficient because it uses greedy quantifiers and it does not employ any capture groups.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部