|
asc
Purpose:
Returns the numerical ASCII value of character.
Return Values:
Returns an integer value between 0 and 255 denoting the numerical ASCII value of character.
Example:
| heitml input: | resulting output:
|
| <? asc(" ")> | 32 |
| <? asc("0")> | 48 |
| <? asc("1")> | 49 |
| <? asc("2")> | 50 |
| <? asc("A")> | 65 |
| <? asc("a")> | 97 |
See Also:
chr().
This page was dynamically generated by
heitml
© 1996-2009 H.E.I. All Rights Reserved
|