Ascii()
Summary
Returns the ASCII code of a character.
Syntax
c = Ascii(string c)
| Argument | Contents |
|---|---|
| c | A single character |
Returns
The ASCII code of the character.
Example
code = Ascii("a") // code is now 97
See Also
| Function | Summary |
|---|---|
| Char() | Returns a character from the ASCII table |
| IntToString() | Converts an integer to a string representation of the integer value |
| String() | Converts a real number to string |