I try to split a GPS coordinate with function:
$long = "13°47'52.544\"E";
$res = preg_split("/[°'\"]/", $long);
but result is:
array(0=>13, 1=>, 2=>47, 3=>52.544, 4=>E)
why item 1 is add to result ?
Example here: http://www.phpliveregex.com/p/nPv