UnicodeLeft (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<span style="font-size:120%; color:black"><b>Left-most characters of string to specified length</b></span>
{{Template:Unicode:UnicodeLeft subtitle}}
[[Category:Intrinsic Unicode methods|UnicodeLeft function]]
[[Category:Intrinsic Unicode methods|UnicodeLeft function]]
[[Category:Intrinsic methods]]
[[Category:Intrinsic methods]]
Line 10: Line 10:


The UnicodeLeft function is available as of version 7.5  of the ''Sirius Mods''.
The UnicodeLeft function is available as of version 7.5  of the ''Sirius Mods''.
===Syntax===
==Syntax==
  %outUni = unicode:unicodeLeft(length, [Pad=char])
{{Template:Unicode:UnicodeLeft syntax}}
====Syntax Terms====
===Syntax terms===
<dl>
<dl>
<dt><i>%outUni</i>
<dt><i>%outUni</i>
Line 30: Line 30:


</dl>
</dl>
===Usage Notes===
==Usage notes==
<ul>
<ul>
<li>The ''length'' value must be a non-negative number.
<li>The ''length'' value must be a non-negative number.
Line 41: Line 41:
the String intrinsic Left method (??[[Left (String function)|Left]]).
the String intrinsic Left method (??[[Left (String function)|Left]]).
</ul>
</ul>
===Examples===
==Examples==


The following statement displays <tt>Model 2</tt>:
The following statement displays <tt>Model 2</tt>:

Revision as of 04:08, 19 January 2011

The left-most characters of the string (Unicode class)

This function returns the left-most characters of the method object string, possibly padding it on the right.

The UnicodeLeft function is available as of version 7.5 of the Sirius Mods.

Syntax

%outUnicode = unicode:UnicodeLeft( number, [Pad= c])

Syntax terms

%outUni
A Unicode variable to receive the result of the UnicodeLeft method.
unicode
A Unicode string.
length
The number of the left-most characters to return. If the method object is shorter than the requested number of characters, it is either padded to the requested length or the entire method object string is returned with no padding, depending on the value of the Pad parameter.
Pad=char
The character used to pad the method object string on the right if it is shorter than the requested length. char defaults to a null, which means no padding is done. Pad is a name-required parameter.

Usage notes

  • The length value must be a non-negative number. A negative number results in request cancellation.
  • The pad parameter value must be either null or a single character. A longer value results in a compilation error.
  • The UnicodeLeft method is identical to the UnicodeSubstring method (??UnicodeSubstring) with a 1 for the first argument.
  • The UnicodeLeft method is analogous to the String intrinsic Left method (??Left).

Examples

The following statement displays Model 2:

   %u is unicode initial('Model 204&#x2122;':U)
   printText {%u:unicodeLeft(7)}

The following statement displays Model 204!!!:

    %u is unicode initial('Model 204')
    printText {%u:unicodeLeft(12, pad='!')}

The following statement gets a character translation exception because the Unicode character &#x2122; (trademark) has no Ebcdic equivalent:

    %u is unicode initial('Model 204&#x2122;':U)
    printText {%u:unicodeLeft(10)}