溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中怎么利用正則表達式獲取大括號小括號內容

發(fā)布時間:2021-08-02 14:27:25 來源:億速云 閱讀:1221 作者:Leah 欄目:編程語言

java中怎么利用正則表達式獲取大括號小括號內容,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

獲取大括號小括號內容

項目開發(fā)用到了,暫做個簡單記錄

private static String regex = "\\{([^}]*)\\}";//匹配大括號 private static String regexx = "\\(([^}]*)\\)";//匹配小括號 public static void main(String[] args) { String dakuohao = "{a+b}={c+d}>xmnygev"; 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+";"); } }

匹配大括號和小括號的表達式,只有轉義后面的符號變了,是不是也可以換成別的

對稱的符號呢

判斷數(shù)字或者小數(shù)或數(shù)字小數(shù)混合

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

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

測試的時候我也找了不少博客,感覺多數(shù)人的都不能避免數(shù)字中的特殊符號

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

ps:java使用正則表達式提取小括號中的內容

public class Test {  public static List<String> getMsg(String msg) {  List<String> list = new ArrayList<String>();   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<String> list = getMsg(msg);   System.out.println(list);  } }

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI