I have a string of text that I would like to break up into multiple strings between integers.
$string = "1 This is the first sentence. 2 This is the second sentence, 3 hello world!";
I want to output it to:
$string1 = "1 This is the first sentence.";
$string2 = "2 This is the second sentence,";
$stirng3 = "3 hello world!";
Or an array is fine too