Hi,
I have some occurrences of carriage line return feed characters in certain strings within my application. When debugging, I can see them as "\r\n" when evaluating the particular String object. however, I can't 'find' "\r\n" using any String search methods; replace, subString, startsWith, that sort of thing. Presumably, the CRLF character is getting transalated into "\r\n" just for my benefit when viewing the string. How can I perform a search for a CRLF character wihin a string and, ultimately, remove it.
Thx for any help.
I have some occurrences of carriage line return feed characters in certain strings within my application. When debugging, I can see them as "\r\n" when evaluating the particular String object. however, I can't 'find' "\r\n" using any String search methods; replace, subString, startsWith, that sort of thing. Presumably, the CRLF character is getting transalated into "\r\n" just for my benefit when viewing the string. How can I perform a search for a CRLF character wihin a string and, ultimately, remove it.
Thx for any help.