Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== UNICODE_ANSI Function ====== ==== Description ==== Converts a UNICODE string to an ANSI string. ==== Syntax ==== ansiString = UNICODE_ANSI(uniCodeString, delimiter) ==== Parameters ==== The function has the following parameters: ^Parameter^Description^ |uniCodeString|The Unicode string to convert to ANSI. This string will contain two-byte Unicode characters.| |delimiter|The minimum delimiter value to use in the conversion.|| ==== Returns ==== A string containing single-byte ANSI characters. ==== Remarks ==== ==== See Also ==== [[ansi_unicode|ANSI_UNICODE()]] ==== Example ==== <code> declare function UNICODE_ANSI utf8_char = \C2AE\ ansi_char = UNICODE_ANSI(utf8_char) * ansi_char contains \AE\ the registration trademark </code> guides/programming/programmers_reference_manual/unicode_ansi.txt Last modified: 2024/06/19 20:20by 127.0.0.1