博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java实现从报文中获取投保单号
阅读量:5089 次
发布时间:2019-06-13

本文共 659 字,大约阅读时间需要 2 分钟。

java实现从报文中获取投保单号

投保单号正则表达式:

String regex = "
([0-9]+)
[\\s\\S]*
([0-9]+)
";String [] arry = matchObject(regex, responseXml); public static String [] matchObject(final String regex,final String xml){  List
array = new ArrayList
();  Pattern pattern = Pattern.compile(regex);  Matcher matcher = pattern.matcher(xml);   if(matcher.find()){    int countX = matcher.groupCount();    for(int i=1;i<=countX;i++){    array.add(matcher.group(i));    }  }  return array.toArray(new String[array.size()]);}-----------------------------------------

 

转载于:https://www.cnblogs.com/liuyitan/p/6866989.html

你可能感兴趣的文章