User Tools

Site Tools


de:chr

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

de:chr [2016/01/01 22:37]
de:chr [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== Chr =====
 +
 +==== Format ====
 +
 +**chr** ( //expression// )
 +
 +==== Description ====
 +
 +Converts the integer //expression// into a single character string expression with the ASCII value of the number. See asc for a complete ASCII character conversion chart.
 +
 +==== See Also ====
 +
 +[[asc|Asc]]
 +
 +==== Example ====
 +
 +<code>
 +print chr(66)+chr(111)+chr(111)+chr(33)
 +</code>
 +will print
 +<code>
 +Boo!
 +</code>
 +
 +==== New To Version ==== 
 +
 +0.9.4
 +