首页 > 建站教程 > JS、jQ、TS >  js两种方法从详细地址中解析出地址省市区(含自治区,直辖市,县,自治县)正文

js两种方法从详细地址中解析出地址省市区(含自治区,直辖市,县,自治县)

js两种方法从详细地址中解析出地址省市区(含自治区,直辖市,县,自治县)

方法一:

var str = "湖北省武汉市江夏区文化大道110号";
console.log(that.getArea(str));
//省市区截取
getArea: function(str) {
  let area = {}
  let index11 = 0
  let index1 = str.indexOf("省")
  if (index1 == -1) {
    index11 = str.indexOf("自治区")
    if (index11 != -1) {
      area.Province = str.substring(0, index11 + 3)
    } else {
      area.Province = str.substring(0, 0)
    }
  } else {
    area.Province = str.substring(0, index1 + 1)
  }
 
  let index2 = str.indexOf("市")
  if (index11 == -1) {
    area.City = str.substring(index11 + 1, index2 + 1)
  } else {
    if (index11 == 0) {
      area.City = str.substring(index1 + 1, index2 + 1)
    } else {
      area.City = str.substring(index11 + 3, index2 + 1)
    }
  }
 
  let index3 = str.lastIndexOf("区")
  if (index3 == -1) {
    index3 = str.indexOf("县")
    area.Country = str.substring(index2 + 1, index3 + 1)
  } else {
    area.Country = str.substring(index2 + 1, index3 + 1)
  }
  return area;
}

效果如下:

js两种方法从详细地址中解析出地址省市区(含自治区,直辖市,县,自治县)

方法二:

通过正则进行判断

var str = "湖北省武汉市江夏区文化大道110号";
var reg = /.+?(省|市|自治区|自治州|县|区)/g; // 省市区的正则
console.log(str.match(reg));

效果如下:

js两种方法从详细地址中解析出地址省市区(含自治区,直辖市,县,自治县)