- This wiki is out of date, use the continuation of this wiki instead
Asc
From FenixWiki
Contents |
[edit] Definition
BYTE asc ( <STRING character> )
Returns the ASCII value of the first character of the string character.
[edit] Parameters
STRING character | - The string of which the ASCII value of the first character will be returned. |
[edit] Returns
BYTE : The ASCII value of the first character of the string character.
[edit] Example
Program asciis; Begin write(0,0, 0,0,asc("A")); write(0,0,10,0,asc("CAT")); Repeat frame; Until(key(_esc)) End
Used in example: write(), key()
Strings Functions | |
• Asc() • Atof() • Atoi() • Chr() • Find() • Ftoa() • Itoa() • Lcase() • Len() • Strrev() • Substr() • Ucase() • |