I have a string, that is like the following:
$string = "New video gameSome TV showAnother item";
I want to be able to access each item individually, to get something like the following output:
New video game
Some TV show
Another item
How can I add a after each item name in the string or some other random character, that I can later explode into an array to access each item individually in the string?