Android Question Carriage return in text message (SMS)

Hello people

My question is the following, in text messages (SMS), carriage returns are included, I'm trying to intercept the CHR(13) but I can't, what's more, it's not in the message, does anyone have an opinion on regard.

Greetings.
 

DonManfred

Expert
Licensed User
Longtime User
Try to replace CHR(13) and CHR(10).
 
Upvote 0
Perhaps I did not express myself well, I do not detect the CHR(13) in the text of the SMS, I analyze character by character and it is not there.

Greetings.
 
Upvote 0

Sandman

Expert
Licensed User
Longtime User
This is very simple to figure out by yourself. Iterate through a message and log each character, together with the ASCII value. Should give you all the info you need in a couple of minutes.
 
Upvote 0
Top