I want to find the text between two characters
$var ='J111 king Jadv oops J123 php';
In above variable i get only the letter start from J.
i need following output,
Starting J values as
Array ( [0] =>J111 [1] => Jadv [2] => J123)
and balance values as,
Array ( [0] =>king [1] => oops [2] => php)
You can try with :
Hope this helps for you 🙂