如何获得以#开头并从字符串中删除的单词

时间:2015-08-31 14:03:26

标签: php string

$query = "Hello #world What's #up"
$newquery = "Hello, What's"

所以基本上我不想删除以#开头的单词。

2 个答案:

答案 0 :(得分:4)

试试这个:

$query = "Hello #world What's #up";
$newquery = preg_replace('/#[^\s]+/', '', $query);
echo $newquery;

答案 1 :(得分:2)

使用preg_replace()

$newquery = preg_replace('/#[^\s]+/', '', $query);