Previous Up Next

5.2.9  ASCII code of a string

The asc command finds the ASCII codes of all the characters in a string.

Examples

asc("abcd")
     

97,98,99,100
          
asc("a")
     

97
          

Previous Up Next