Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can any one suggest me how to match string patterns, where One string is

(\\.quantserve\\.com\\/|\\/quant\\.js)$

and which needed to be matched to

edge.quantserve.com/quant.js$.

Thanks for your help.

share|improve this question

1 Answer

up vote 1 down vote accepted

You should use the java.util.regex.Pattern Object to match String-objects in Java. Your example would be something like:

Pattern p = Pattern.compile(".*\\.quantserve\\.com/.*quant\\.js");
boolean b = p.matcher("edge.quantserve.com/quant.js").matches();
System.out.println(b);

Edit: Debug in Pattern

share|improve this answer
I tried that.. it results in false. – Kaushal Singh Oct 31 '11 at 11:37
Sorry, little typo in the pattern, I missed the .* in the beginning of the pattern. – Jonathan Oct 31 '11 at 11:52

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.