1
正則表達式
我試圖像匹配模式「@(A-ZA-Z0-9)+「,但不喜歡‘ABC @測試’。需要幫助的在Java中使用
所以這是我的嘗試:?
Pattern MY_PATTERN
= Pattern.compile("\\[email protected](\\w)+\\s?");
String data = "[email protected] #gogasig @jytaz @tibuage";
Matcher m = MY_PATTERN.matcher(data);
StringBuffer sb = new StringBuffer();
boolean result = m.find();
while(result) {
System.out.println (" group " + m.group());
result = m.find();
}
但我只能看到 '@jytaz',但不是@tibuage 我怎樣才能解決我的問題,謝謝