String identifier = "(/news/|/finace/)&from=ucweb"
String url = "/news/abroad/zhuanti?nid=122334&from=ucweb&foo=sthelse"
public boolean ifMatch(String url, String identifier) {
}
find if the url match the identifier.
The identifier is not a regex pattern, I'm thinking like that:
split the identifier with (, ) , | , & 4 charactors,then check if the url contains "/news/", "/finance/", "from=ucweb", then math the result.
but I don't know how to implement it, can anybody help?