Clib.toascii()
syntax: |
Clib.toascii(chr) |
where: |
chr - character to be converted.
|
return: |
|
description: |
This method translates chr to ASCII format, to seven bits. The translation is done by clearing all but the lowest 7 bits. The return is chr converted to ASCII. Remember that JavaScript has no true character type, thus, this method considers a single character string to be a chr.
|
see: |
Clib.toascii(), Clib.tolower(), Clib.toupper(), String toLowerCase(), String toLowerCase(), String invertCase()
|