I have a string with data like this:
8487613 1298296324 1a6ad892e547da07f35221fdfe6f70dd "|MoDo|" 178.211.28.126 "Battlefield Bad Company 2" "BC Stuff and name" "Violation (AIMBOT) #50246"
In my PHP I use explode like this:
$more_info = explode(' ', $banned_players);
But it separates spaces in "Battlefield Bad Company 2" and I don't want that to happen.
So is there any way for explode with spaces but not between "" characters?