CharacterToUnicodeMap class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 8: Line 8:


You can use the <var>String</var> class <var>[[CharacterToUnicode (String function)|CharacterToUnicode]]</var> method
You can use the <var>String</var> class <var>[[CharacterToUnicode (String function)|CharacterToUnicode]]</var> method
to produce the mapped Unicode characters for the string characters you specify.
which returns the mapped Unicode characters for its string method object.


The <var>CharacterToUnicodeMap</var> class is new as of version 8.0 of the <var class="product">Sirius Mods</var>.
The <var>CharacterToUnicodeMap</var> class is new as of version 8.0 of the <var class="product">Sirius Mods</var>.

Revision as of 18:18, 30 September 2013

A CharacterToUnicodeMap object contains a mapping of single-byte code points to Unicode (double-byte) characters. The single-byte characters are presumably EBCDIC or ASCII, though the class does not explicitly require this — it simply maps code points in some character set to Unicode.

The CharacterToUnicodeMap class provides programmers with a facility for creating or copying codepages that are not currently available in the current Sirius Mods version. Besides methods for creating and modifying your own codepage, the class also has methods for dynamically invoking one of the Sirius Mods codepages supported at your site.

You can use the String class CharacterToUnicode method which returns the mapped Unicode characters for its string method object.

The CharacterToUnicodeMap class is new as of version 8.0 of the Sirius Mods.

Example

The following request generates a basic ASCII to Unicode codepage, then converts the ASCII '01234' equivalent hex characters to Unicode. If you attempt to extract a translation of a code point not in the mapping, say an ASCII code point with the high order bit on like X'80', you get a CharacterTranslationException exception:

b %i is float %l is longstring %u is unicode %tr is object characterToUnicodeMap for %i from 0 to 127 %l = %l with %i:integerToBinary(1) %u = %u:unicodeWith(%i:integerToBinary(2):utf16ToUnicode) end for %tr = new(in=%l, out=%u) printText {'3031323334':x:characterToUnicode(%tr)} end

List of CharacterToUnicodeMap methods

The "List of CharacterToUnicodeMap methods" shows all the class methods.