通过正则表达式取Json字符串的value值,不管中文,英文,大小写字符,还是数字,小数点通吃

我们经常编写软件是,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);
        }
}

测试结果:
通过正则表达式取Json字符串的value值,不管中文,英文,大小写字符,还是数字,小数点通吃
是不是非常简单哈

上一篇:VBS下将gbk转utf-8


下一篇:正则表达式(总结篇)