Hi I have the following text:
SMWABCCA
ABCCAEZZRHM
NABCCAYJG
XABCCA
ABCCADK
ABCCASKIYRH
ABCCAKY
PQABCCAK
ABCCAKQ
This method takes a regex in out by the user and SHOULD print out the Strings it applies to but seems to print out something completely different:
private void matchIt(String regex) {
Pattern p = Pattern.compile(regex);
Matcher m = null;
boolean found = false;
for(int i = 0; i < data.length; i++){
m = p.matcher(data[i]);
if(m.find()){
out.println(data[i]);
found = true;
}
}
if(!found){
out.println("Pattern Not Found");
}
}
When inputting "[C],
EDIT: Sorry I printed out the wrong output. Here is the actual output:
SMWABCCA
ABCCAEZZRHM
NABCCAYJG
XABCCA
ABCCADK
ABCCASKIYRH
ABCCAKY
PQABCCAK
ABCCAKQ
SMWABCCA
ABCCAEZZRHM
NABCCAYJG
XABCCA
ABCCADK
ABCCASKIYRH
ABCCAKY
PQABCCAK
ABCCAKP
Any ideas why? I think I'm using m.find() improperly...
EDIT: What would the regular expression be for find all strings that end with P:
I tried:
[.*P][\W]
Which I interpret to be - All anything until a P followed by non word characters..but it doesn't work.
matchItis called? – Platinum Azure Jan 17 '11 at 15:36