我想實現其實很簡單解析兩個數字正則表達式從行
V123,V20
10,9999
100,V220
等等
基本上多雙帶有前導字母/零的數字。 我希望能夠使用正則表達式來解析它們,我已經在Java中迄今發現的是:
Pattern p = Pattern.compile(".*([1-9](?:\\d{0,2})).*",Pattern.MULTILINE);
Matcher m = p.matcher("V999,V50");
System.out.println(m.matches()); - return true
System.out.println(m.groupCount()); --> this one returns 0
任何幫助將不勝感激,謝謝 。
是不是(i)拆分和(ii)刪除非數字字符更簡單? – assylias 2013-05-13 18:58:31
你想做什麼?你所說的只是你想「_parse them_」。這可能意味着什麼。 – jahroy 2013-05-13 19:00:54
您的預期輸出來自以上輸入? – anubhava 2013-05-13 21:10:40