正則表達式



String s = "skuMap陳銓propertyMemoMap";
String rgex = "skuMap(.*?)propertyMemoMap";//明明就是有的,能夠匹配的,可是就是一直匹配不到
s = s.replaceAll("\\s*", "");//結果全部的回車符、空格符、換行符,就能夠了
System.out.println(s);
String subUtilSimple = getSubUtilSimple(s, rgex);
//subUtilSimple  = 陳銓
public static String getSubUtilSimple(String soap, String rgex) {    Pattern pattern = Pattern.compile(rgex);// 匹配的模式    Matcher m = pattern.matcher(soap);    while (m.find()) {        return m.group(1);    }    return "";}
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息