js中对省市区字符串进行切割
时间:2020-06-15 16:32:18
收藏:0
阅读:284
// var address = "辽宁省沈阳市和平区"; // 以这个地址为例
// const address = msg.detail;
// const proExp = ".+[省]",cityExp = ".+[市]",disExp = ".+[区]";
// const province = address.match(new RegExp(proExp)); // 省
// const city = address.match(new RegExp(cityExp))[0].replace(province, ""); // 市
// const district = address.match(new RegExp(disExp))[0].replace(province, "").replace(city, ""); // 区
原文:https://www.cnblogs.com/yangmie/p/13131468.html
评论(0)