獲取大括號(hào)小括號(hào)內(nèi)容
項(xiàng)目開發(fā)用到了,暫做個(gè)簡單記錄
private static String regex = "\\{([^}]*)\\}";//匹配大括號(hào)
private static String regexx = "\\(([^}]*)\\)";//匹配小括號(hào)
public static void main(String[] args) {
String dakuohao = "{a+b}={c+d}>vl2y3x2";
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+";");
}
}
匹配大括號(hào)和小括號(hào)的表達(dá)式,只有轉(zhuǎn)義后面的符號(hào)變了,是不是也可以換成別的
對(duì)稱的符號(hào)呢

判斷數(shù)字或者小數(shù)或數(shù)字小數(shù)混合
整數(shù) ^([0-9]{1,}[.][0-9]*)$

小數(shù) ^([0-9]{1,}[.][0-9]*)$
測(cè)試的時(shí)候我也找了不少博客,感覺多數(shù)人的都不能避免數(shù)字中的特殊符號(hào)

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

ps:java使用正則表達(dá)式提取小括號(hào)中的內(nèi)容
public class Test {
public static ListString> getMsg(String msg) {
ListString> list = new ArrayListString>();
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)";
ListString> list = getMsg(msg);
System.out.println(list);
}
}
總結(jié)
以上所述是小編給大家介紹的java正則表達(dá)式獲取大括號(hào)小括號(hào)內(nèi)容并判斷數(shù)字和小數(shù)親測(cè)可用,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
您可能感興趣的文章:- Java移除無效括號(hào)的方法實(shí)現(xiàn)
- java括號(hào)匹配算法求解(用棧實(shí)現(xiàn))
- java去除中文括號(hào)小括號(hào),或者英文括號(hào)的實(shí)例代碼
- Java Json字符串的雙引號(hào)("")括號(hào)如何去掉
- Java List集合返回值去掉中括號(hào)(''[ ]'')的操作
- Java棧的應(yīng)用之括號(hào)匹配算法實(shí)例分析
- 使用Java的方式模擬Flutter的Widget實(shí)現(xiàn)多層括號(hào)嵌套
- Java 括號(hào)匹配問題案例詳解