Name

toascii — Returns characters below 0x7F included in STRING

Synopsis

string toascii ( string STRING );
 

Parameters

string STRING

Return

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"