I have several strings in the rough form:
[some number with one or 2 digits] [some text] [a text which is ABC or BC] [some text]
String test = "12testABCtest";
Pattern p = Pattern.compile("([\\d]{1,2})([\\w]*)(ABC|BC)([\\w]*)");
But it gives me always "BC in the 3rd group instead of ABC. ( as it include the A in the previous group )
Do you have any idea how to do it?
thank you,
[\\d]you can just write\\d, same goes for\\w.(ABC|BC)can be written(A?BC). – Qtax Jun 29 '11 at 10:33