If a particular String contains a newline character that is invisible (not \n but is 0A in hexadecimal because this value is passed down from the database), how can i able to chomp it away? Will Apache Chomp help?
The hex form of the text returned from the database is "5761 6920 4D61 6E0D 0A"
It translates to "Wai Man" with a carriage return.
\nis U+000A (a.k.a newline). Could you tell us exactly what yourStringlooks like? Best provide achar-for-chardump of it. – Joachim Sauer Jul 29 '11 at 9:02\r\n(i.e. a DOS/Windows-style newline).input.replace("[\r\n]+$", "")should get rid of any tailing newlines on your input. – Joachim Sauer Jul 29 '11 at 9:09\n(a.k.a LF). – Joachim Sauer Jul 29 '11 at 9:26