无法解析Google地理编码API

时间:2018-11-08 20:02:27

标签: geocoding google-geocoder

在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++;
    }
}

1 个答案:

答案 0 :(得分:0)

在PHP中有explode()函数。

array explode(separator, OriginalString, NoOfElements)
$str = "Plymouth Rd";
array explode(" ", $str);

那应该让您同时拥有一个数组。