Android Question CRLF or smart string from database

shashkiranr

Active Member
Licensed User
Longtime User
Hi,

I have a string value with a new line CRLF to indicate a new line. Just by assigning the value to a label works fine but when you are retrieving the same from a database, the CRLF are not parsed as new line rather than a string. How can I format it to be a new line function.

Best,
SK
 

DonManfred

Expert
Licensed User
Longtime User
Is the linefeed stored as CR + LF? (TWO Chars)

B4As CRLF is just ONE Char. #13 i think. (or #10)
Try to replace #13#10 with just #13 (or #10)
 
Upvote 0
Top