Name
toascii — Returns characters below 0x7F included in STRING
Synopsis
string
toascii
( |
string
STRING
) ; |
Description
Returns a string that results from string STRING
by copying each character that is below 0x7F (127).
Usage
toascii ("aBë") -> "aB"
toascii ("123+-abcABCöëä") -> "123+-abcABC"