嗨我想從URL中獲取一個字符串。Java:從URL獲得整數值
我正在使用正則表達式。
String url = "http://localhost/htc/android/htc-incredible/259164-gpid";
Pattern regex = Pattern.compile("^.+/(\\d+)-gpid$");
Matcher tagmatch = regex.matcher(url);
System.out.println(tagmatch.group(0));
錯誤:
Exception in thread "main" java.lang.IllegalStateException: No match found
什麼,我做錯了:
同樣的結果@Tim,我已經試過組(1)爲好; :( –
有什麼問題? –
更新了異常問題。 –