Returns the ASCII character code corresponding to the first letter in a string.
Syntax: |
---|
value = ASCII( expression ) OR value = Asc( expression ) ' Short Keyword form usage: "Asc". |
Parameter: |
Description: |
---|---|
expression |
expression, if it is not a string it will be converted to a string |
value |
ASCII character code |
This is the Standard ASCII table for converting text to an ASCII value, and for using the Chr() function to convert the ASCII number to a text character.
Example: |
---|
value = ASCII( "A" ) ' Returns 65
Results:See above comments. |
Links: |
---|
See Also: |
Edit Time: 9/18/2020 1:30:56 PM |
Topic ID#: 41 |