Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question

1 Answer

    if (url.matches("^.*from=ucweb.*$")
            && ( url.matches("^.*/news/.*$") 
            ||   url.matches("^.*/finance/.*$"))) {
        System.out.println("match found");

    }
share|improve this answer
In the identifier , "|" means "or", "&" means "and", so how to chech match? – zkz Nov 1 '11 at 11:39
@zkz: did you mean it? – Prince John Wesley Nov 1 '11 at 11:55
the "&" means "and", not the & in common url means. – zkz Nov 1 '11 at 12:50
Thank you, but if the identifier is different from this, but also like (...)|(...&...(...|...)), how to? – zkz Nov 3 '11 at 1:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.