私は文字列を持っています
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())
{
....
}
でも柄が合わない…。
助けてください
ありがとう