java正则表达式获取大括号小括号内容并判断数字和小数亲测可用

网友投稿 715 2023-01-03


java正则表达式获取大括号小括号内容并判断数字和小数亲测可用

获取大括号小括号内容

项目开发用到了,暂做个简单记录

private static String regex = "\\{([^}]*)\\}";//匹配大括号

private static String regexx = "\\(([^}]*)\\)";//匹配小括号

public static void main(String[] args) {

String dakuohao = "{a+b}={c+d}>{d}";

Pattern compile = Pattern.compile(regex);

Matcher matcher = compile.matcher(dakuohao);

while(matcher.find()){

String group = matcher.group();

System.out.print(group+";");

}

System.out.println();

String xiaokuohao = "(a+b)=(c+d)>(d)";

Pattern comp = Pattern.compile(regex);

Matcher mat = comp.matcher(dakuohao);

while(mat.find()){

String group = mat.group();

System.out.print(group+";");

}

}

匹配大括号和小括号的表达式,只有转义后面的符号变了,是不是也可以换成别的

对称的符号呢

判断数字或者小数或数字小数混合

整数      ^([0-9]{1,}[.][0-9]*)$

小数   ^([0-9]{1,}[.][0-9]*)$

测试的时候我也找了不少博客,感觉多数人的都不能避免数字中的特殊符号

小数和数字混合    (^[0-9]*$)|(^([0-9]{1,}[.][0-9]*)$)

ps:java使用正则表达式提取小括号中的内容

public class Test {

public static List getMsg(String msg) {

List list = new ArrayList();

Pattern p = Pattern.compile("(\\()([0-9a-zA-Z\\.\\/\\=])*(\\))");

Matcher m = p.matcher(msg);

while (m.find()) {

list.add(m.group(0).substring(1, m.group().length() - 1));

}

return list;

}

public static void main(String[] args) throws Exception {

String msg = "mSurface=Surface(name=com.bbk.launcher2/com.bbk.launcher2.Launcher)";

List list = getMsg(msg);

System.out.println(list);

}

}

总结


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:监测系统接口设计(监控的接口)
下一篇:java中的控制结构(if,循环)详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~