UnicodeReplace (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 13: Line 13:
{{Template:Unicode:UnicodeReplace syntax}}
{{Template:Unicode:UnicodeReplace syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt><i>%unicode</i>
<tr><th><i>%unicode</i> </th>
<dd>A Unicode variable to receive the method object string altered by any
<td>A Unicode variable to receive the method object string altered by any replacement characters. </td></tr>
replacement characters.
<tr><th><i>unicode</i> </th>
<dt><i>unicode</i>
<td>A Unicode string.</td></tr>
<dd>A Unicode string.
</table>
 
</dl>
==Usage notes==
==Usage notes==
<ul>
<ul>

Revision as of 04:34, 19 January 2011

Apply the replacement table to this string (Unicode class)

Items in the replacement table are created with UNICODE Rep update commands, as described in ?? refid=updtuni..

The UnicodeReplace function is available as of version 7.3 of the Sirius Mods.

Syntax

%outUnicode = unicode:UnicodeReplace

Syntax terms

%unicode A Unicode variable to receive the method object string altered by any replacement characters.
unicode A Unicode string.

Usage notes

  • The method output is the input Unicode string, with those characters specified in the Unicode replacement table replaced by their corresponding Unicode strings. If no Unicode replacement table is in effect, the method merely copies its input.

Examples

The following example shows a successful call of UnicodeReplace. The U constant function is used in the example.

An updating UNICODE command is used "in-line" with the User Language request to make the example concrete. In actual usage, updating UNICODE commands should only be issued from your Model 204 initialization stream.

    UNICODE Table Standard Rep U=2122 '(TM)'
    Begin
    %u Unicode Initial('Cool&#x2122;':U)
    Print %u:UnicodeReplace
    End

The result is:

    Cool(TM)