PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WD19] - Trace window character
[WD19] - Trace window character
Iniciado por guest, 26,mar. 2015 12:55 - 2 respuestas
Publicado el 26,marzo 2015 - 12:55
Hi All

Simple question really - I am trying to parse some text that I receive. In the trace window I see the lines brokern up by the symbols <\ >. What character does that represent? What ASCII value?

TIA
Publicado el 26,marzo 2015 - 14:01
Hi JP,

Correct! Also known as Escape codes - it's a new line (line feed) char (decimal 10 or hex 0A).

Also; \ is a tab (dec 9 / hex 09) and \ is a carriage return (dec 13 / hex 0D) etc...

<a class="ExternalLink" rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/ASCII">http://en.wikipedia.org/wiki/ASCII</a>
Publicado el 26,marzo 2015 - 14:17
Thanks Darren. I did a quick ASC() check on the characters and quickly found the value. Funny that after all these years PC Soft have constants for CRLF, TAB, ESC, etc. but not a simple LF. Oh well, made my own <img src="/NG2013_WEB/ui/smiley/1.gif" align=absmiddle border=0 alt=":)">