2
在我的正則表達式中保持不匹配不知道出了什麼問題。Salesforce Apex正則表達式 - @metion
String myString = 'test @abcd efg done'
Pattern p = Pattern.compile('@(\\w+)\\s(\\w+)');
Matcher pm = p.matcher(myString);
pm.group(); //getting no match error
期望第一組爲abcd,第二組爲待命。 任何想法,我的正則表達式有什麼問題?
任何幫助將是很好的。
謝謝!
感謝您的幫助。對我而言,這是愚蠢的。大聲笑 –