Obter um personagem ASCII

Da wiki ArcoWiki
Revisão em 07h43min de 7 de junho de 2018 por Slia (Discussão | contribs) (Criou a página com "In order to '''get an ASCII character''' from a string it is necessary to use the command <code>CHR(num)</code>.<br/> It returns a string with the length of 1 char which...")
(dif) ← Revisão anterior | Revisão atual (dif) | Revisão seguinte → (dif)
Ir para: navegação, pesquisa

In order to get an ASCII character from a string it is necessary to use the command CHR(num).
It returns a string with the length of 1 char which contains the ASCII character corresponding to the numeric value of 'x' (1 to 255)

$$ Example to print ALL the ASCII characters

DECL/CHAR,50,st
DECL/INTGR,ii
DISPLY/OFF
DISPLY/TERM,V(TEXT)
DO/ii,1,255
$$ Assign to the (ii) value the corresponding ASCII character
st=ASSIGN/CHR(ii)
st=ASSIGN/CONCAT(STR(ii),' ',st)
TEXT/OUTFIL,st
ENDDO