gpt4 book ai didi

javascript - 将目的地分为城市、地区和国家

转载 作者:行者123 更新时间:2023-12-03 04:15:30 34 4
gpt4 key购买 nike

我有一个字符串

var str = "Orlando (and vicinity), Florida, United States of America";

我想拆分此字符串以在 Javascript 中保存城市、地区和国家/地区。

Eg: city - Orlando
region - Florida
country - United States Of America

最佳答案

尝试下面的方法,我已将它们插入到一个对象中。

var str = "Orlando (and vicinity), Florida, United States of America";

data = str.split(',')
city = data[0].match(/^\w+/g)

res = {
'city': city[0],
'region': data[1],
'country': data[2]
}

console.log(res)

关于javascript - 将目的地分为城市、地区和国家,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44154763/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com