我一直在尝试匹配以下字符串 -
String temp = "[[Wikipedia:Manual of Style#Links|]]" ;
使用正则表达式
boolean a = temp.matches("\\[\\[Wikipedia:[a-zA-Z_0-9]*#[a-zA-Z_0-9]*\\|\\]\\]");
"\\[\\[Wikipedia:(.*?)#(.*?)\\|\\]\\]"
"\\[\\[Wikipedia:(.*)*#(.+)*\\|\\]\\]"
"\\[\\[(.*?)#(.*?)\\|\\]\\]"
但他们都没有给出任何积极的匹配。