I don't understand why if I use:
boolean found = Pattern.compile("^\\d", Pattern.MULTILINE).matcher("dfg\n5t").find();
, it returns true.
But If I use:
// taken from two input field with the same above values!!!
String rx = txt_rx.getText();
String ch = txt_ch.getText();
boolean found = Pattern.compile(rx, Pattern.MULTILINE).matcher(ch).find();
, it returns false.
Thanks.
rxandchare taken. – michal.kreuzman Mar 20 '11 at 10:11rx,chto stdout (or inspecting in a debugger). Simply they must be sth different that you think they are. – Piotr Findeisen Mar 20 '11 at 10:17