在Google地理编码API中,如何将像"Plymouth"
之类的街道名称拆分为"Rd"
和"long_name" : "Plymouth Road",
"short_name" : "Plymouth Rd",
。默认的JSON格式不会拆分名称和类型。
示例:
public void separator(){
int count=0, i=0;
while (count == 0) {
if (track1result.charAt(i) != '^') {
char c = track1result.charAt(i);
number += c;
} else {
count++;
}
i++;
}
}
答案 0 :(得分:0)
在PHP中有explode()函数。
array explode(separator, OriginalString, NoOfElements)
$str = "Plymouth Rd";
array explode(" ", $str);
那应该让您同时拥有一个数组。