我正在嘗試使用REGEX從較大的字符串中提取5位數字。使用Java從字符串中提取任意5位數字
這裏是我用來做到這一點的方法,但它只是返回null。
public void setCWBudgetCode(String webPage){
Pattern pattern = Pattern.compile("/\\b\\d{5}\b/g");
Matcher matcher = pattern.matcher(webPage);
if (matcher.find())
this.cwBudgetCode = matcher.group();
}
沒有第1組中的正則表達式。只需使用'group()' –