String.trim() method
807569Jul 6 2006 — edited Jul 6 2006I have a question about String.trim().
I have a string like this:
\u00a0
\u000a
\u0020
\u0020
\u0020
\u0020
But after I call String.trim(),
The string becomes like this:
\u00a0
\u000a
My question is how come trim() does not remove \u000a and \u000a0?
Thank you.