UnicodeUntranslatablePosition (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 31: Line 31:


The following fragment shows a successful call of UnicodeUntranslatablePosition.
The following fragment shows a successful call of UnicodeUntranslatablePosition.
The <tt>U</tt> constant function used in the example is described
The [[U (String function)|U constant function]] is used in the example.
??[[U (String function)|U]].
<pre>
<pre>
     %u Unicode Initial('A&amp;#x80;B':U)
     %u Unicode Initial('A&amp;#x80;B':U)

Revision as of 22:06, 21 December 2010

Position of first Unicode character not transla

This function finds the character position of the first character in the input Unicode string that is not translatable to EBCDIC.

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

Syntax

  %position = unicode:UnicodeUntranslatablePosition
%position
A numeric variable to receive either of the following:
  • 0, indicating that all of the input Unicode characters are translatable to EBCDIC.
  • The character position of the first character that is not translatable to EBCDIC. Position 1 is the first character in the string.
unicode
A Unicode string.

Examples

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

    %u Unicode Initial('A&#x80;B':U)
    Print %u:UnicodeUntranslatablePosition

The result is:

    2