ANSI_UTF8 function

Converts a variable containing ANSI characters to a variable containing the corresponding UTF_8 characters.

UTF_8_row = ANSI_UTF8(ANSI_row, minimum_delimiter)

The Ansi_UTF8 function has the following parameters.

ParameterDescription
ANSI_rowA variable containing ANSI characters.
minimum_delimiter(optional) Minimum system delimiter used when converting. Pass char(00) or do not pass to preserve all delimiters. Pass char(255) to convert all delimiters.
declare function ANSI_UTF8
*  \AE\ the registration trademark
ansi_char = \AE\ : @FM : @VM : @SVM
*  preserves @FM and @VM but converts @SVM to ANSI
utf8_char = ANSI_UTF8(ansi_char, @VM)
*  preserves all Pick delimiters
utf8_char = ANSI_UTF8(ansi_char, char(00))
*  converts all Pick delimiters
utf8_char = ANSI_UTF8(ansi_char, char(255))
 
**
**
  • guides/programming/programmers_reference_manual/ansi_utf8.txt
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1