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
$arr = explode(';', trim("{you: awesome; feeling good}", '{}')); $feel_good_string = trim($arr[1]); echo $feel_good_string;