Since I don't like using a regex I would like to ask if there's another easy way to extract values from a string.
Example strings:
send 0.2 XYZ ABC DEF
In the example above I would need to extract all values meaning I would need:
$string_1 = "send";
$string_2 = "0.2";
$string_3 = "XYZ";
$string_4 = "ABC";
$string_5 = "DEF";
Is there some way easy way to filter the above example? The " separating symbol" would be always a " " (blank space).