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

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.

share|improve this question
Hi, could you post full source code where is clear where rx and ch are taken. – michal.kreuzman Mar 20 '11 at 10:11
i suggest printing rx, ch to 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
The string returned by getText are the same as string literals... – xdevel2000 Mar 20 '11 at 16:05

1 Answer

up vote 2 down vote accepted

You say that strings returned by getText() are the same as string literals, but they shouldn't be the same!

\\ and \n are special escape sequences which are interpreted (as \ and newline respectively) in string literals only. If you want to read the same strings as you get after interpretation of string literals from the text fields, you should enter them as ^\d and

dfg
5t

respectively. You need a mulitline text field to enter the latter value (JTextArea in Swing).

share|improve this answer
Ok, it works. Thanks! – xdevel2000 Mar 21 '11 at 11:32

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.