我们经常编写软件是,json数据格式经常使用,如果快速取到value值呢,直接上代码:
public static void main(String[] args) {
String parse = "{\"sex\":\"男\",\"age\":\"23.160\",\"brithday\":\"2010-10-23\"}";
String regex = "\"age\":\"(.*?)\\\"";//使用非贪婪模式!
//String regex="age:(.*?),OP_FLAG";//别忘了使用非贪婪模式!
Matcher matcher= Pattern.compile(regex).matcher(parse);
while(matcher.find())
{
String ret=matcher.group(1);
System.out.println(ret);
}
}
测试结果:
是不是非常简单哈