PHP: How can I remove from String the last word?

后端 未结 6 1170
轻奢々
轻奢々 2021-02-05 21:39

How can I remove, with PHP, the last word from a String?

For example the string \"Hi, I\'m Gian Marco\" would become \"Hi, I\'m Gian\".

6条回答
  •  广开言路
    2021-02-05 22:32

    try with this :

    $txt = "Hi, I'm Gian Marco";
    $str= preg_replace('/\W\w+\s*(\W*)$/', '$1', $txt);
    echo $str
    

    out put

    Hi, I'm Gian
    

提交回复
热议问题