刪除圓括號我有一個字符串正則表達式從字符串
String s="[[Identity (philosophy)|unique identity]]";
我需要將其解析到。
s1 = Identity_philosphy
s2= unique identity
我曾嘗試下面的代碼
Pattern p = Pattern.compile("(\\[\\[)(\\w*?\\s\\(\\w*?\\))(\\s*[|])\\w*(\\]\\])");
Matcher m = p.matcher(s);
while(m.find())
{
....
}
但是這種模式並不匹配..
請幫助
感謝
你需要插入那裏曾經是括號中的下劃線?如果是這樣,這樣做的具體規則是什麼? –