赞
踩
package com.rdes.talents.utils; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * @Author: 更多实用源码 www.cx1314.cn * @Date: 2023/9/7 15:22 * @Description: 根据身份证号码所在地址提取出省市区 */ public class AddressResolutionUtil { public static List<Map<String, String>> addressResolution(String address) { String regex = "(?<province>[^省]+自治区|.*?省|.*?行政区|.*?市)(?<city>[^市]+自治州|.*?地区|.*?行政单位|.+盟|市辖区|.*?市|.*?县)(?<district>[^县]+县|.+区|.+市|.+旗|.+海域|.+岛)?(?<town>[^区]+区|.+镇)?(?<detail>.*)"; Matcher m = Pattern.compile(regex).matcher(address); String province = null, city = null, district = null, town = null, detail = null; List<Map<String, String>> table = new ArrayList<Map<String, String>>(); Map<String, String> row = null; while (m.find()) { row = new LinkedHashMap<String, String>(); province = m.group("province"); row.put("province", province == null ? "" : province.trim()); city = m.group("city"); row.put("city", city == null ? "" : city.trim()); district = m.group("district"); row.put("district", district == null ? "" : district.trim()); town = m.group("town"); row.put("town", town == null ? "" : town.trim()); detail = m.group("detail"); row.put("detail", detail == null ? "" : detail.trim()); table.add(row); } return table; } public static void main(String[] args) { System.out.println(addressResolution("广东省深圳市福田区梅林街道办事处国际金融科技大厦")); System.out.println(addressResolution("山东省德州市禹城市伦镇堂子街村235号")); System.out.println(addressResolution("更多精品IT资源 www.cx1314.cn ")); System.out.println(addressResolution("身份证匹配户籍地址JSON数据下载地址: www.cx1314.cn ")); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。