G GandaSalada Apr 9, 2007 #1 Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you
Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you
R RoyVidar Apr 9, 2007 #2 GandaSalada said: Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you Click to expand... Try the Asc() function ? Asc("a") -> 97
GandaSalada said: Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you Click to expand... Try the Asc() function ? Asc("a") -> 97
D Douglas J. Steele Apr 9, 2007 #3 Try the Asc function (or AscB). Note, however, that it works on one character at a time.
T Tom Lake Apr 9, 2007 #4 GandaSalada said: Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you Click to expand... Asc() will do it. Tom Lake
GandaSalada said: Is there a function that return the charcode of a string? It would be a kind of reverse Chr() Thank you Click to expand... Asc() will do it. Tom Lake