How to Split words using php?

前端 未结 3 942
没有蜡笔的小新
没有蜡笔的小新 2021-01-16 20:39

I want to split a small word. My word is written bellow.

{you: awesome; feeling good}

I want to split above word to just get the word

3条回答
  •  我在风中等你
    2021-01-16 20:57

    You can use explode() in PHP for split string.

    Example 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
    

    Example 2:

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

提交回复
热议问题