Extracting Twitter hashtag from string in PHP

前端 未结 7 1157
离开以前
离开以前 2020-12-18 11:19

I need some help with twitter hashtag, I need to extract a certain hashtag as string variable in PHP. Until now I have this

$hash = preg_replace (\"/#(\\\\w         


        
7条回答
  •  春和景丽
    2020-12-18 11:49

    Here's a non Regex way to do it:

    Demo

    Note: This will only pickup the first hashtag in the tweet.

提交回复
热议问题