PHP Regex to convert text before colon to link

前端 未结 5 881
逝去的感伤
逝去的感伤 2021-01-25 04:40

I need to find the first occurance of a colon \':\' and take the complete string before that and append it to a link.

e.g.

username: @twitter nice site!          


        
5条回答
  •  长情又很酷
    2021-01-25 05:24

    Direct answer to your question:

    $string = preg_replace('/^(.*?):/', '$1:', $string);
    

    But I assume that you are parsing twitter RSS or something similar. So you can just use /^(\w+)/.

提交回复
热议问题