CharacterToUnicode (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Template:String:CharacterToUnicode subtitle}}
{{Template:String:CharacterToUnicode subtitle}}


<var>CharacterToUnicode</var> takes a string input and outputs a copy of it in which any of the input characters that are also specified in a character mapping object are replaced with the characters to which they are mapped by the object. <var>CharacterToUnicode</var> takes a <var>[[CharacterToUnicodeMap class|CharacterToUnicodeMap]]</var> object as input, which maps code points in a character set to corresponding Unicode characters.  
<var>CharacterToUnicode</var> takes a string input and outputs a copy of it in which any of the input characters that are also specified in a <var>CharacterToUnicodeMap</var> object are replaced with the characters to which they are mapped by the object. A <var>[[CharacterToUnicodeMap class|CharacterToUnicodeMap]]</var> object maps code points in a character set to corresponding Unicode characters.  


==Syntax==
==Syntax==

Revision as of 21:14, 29 November 2011

Translate characters to unicode (String class)

[Introduced in Sirius Mods 8.0]


CharacterToUnicode takes a string input and outputs a copy of it in which any of the input characters that are also specified in a CharacterToUnicodeMap object are replaced with the characters to which they are mapped by the object. A CharacterToUnicodeMap object maps code points in a character set to corresponding Unicode characters.

Syntax

%unicode = string:CharacterToUnicode( characterToUnicodeMap) Throws CharacterTranslationException

Syntax terms

%unicode A Unicode string variable to receive the Unicode character mapped to the method object string.
string A string of characters to be individually converted to the Unicode characters to which they are mapped in the characterToUnicodeMap object.
characterToUnicodeMap A CharacterToUnicodeMap object.

Usage notes

Examples

See also