如何使用PHP分割单词?

时间:2016-02-10 10:17:11

标签: php

我想分开一个小字。我的话是在下面写的。

{you:awesome;感觉很好}

我想通过使用php来分辨上面的单词感觉良好

3 个答案:

答案 0 :(得分:3)

$arr = explode(';', trim("{you: awesome; feeling good}", '{}'));
$feel_good_string = trim($arr[1]);
echo $feel_good_string;

答案 1 :(得分:0)

您可以在PHP中使用explode()来分割字符串。

示例1:

$string = '{you: awesome; feeling good}'; // your string
preg_match('/{(.*?)}/', $string, $match); // match inside the {}
$exploded = explode(";",$match[1]); // explode with ;
echo $exploded[1]; // feeling good

示例2:

$string = '{you: awesome; feeling good}'; // your string
$exploded = explode(";", $string);  // explode with ;
echo rtrim($exploded[1],"}"); // rtrim to remove ending } 

答案 2 :(得分:0)

其他选择是......

$str = "{you: awesome; feeling good}";
$str = trim($str,"{}");
echo substr($str,strpos($str,";")+1);