I have a simple explode thing going here:
$parsed = explode(' ',$line);
It works for most of the line I place inside. It's only separating by spaces, nothing huge.
However, the line I pass into the function happens to have spaces that exceed 1 character in size.
I figure a regexp is the way to go, but I'm not quite getting the syntax:
$parsed = explode('[[:space:]]',$line);
So far, I'm not making it happen. help!