UnicodeLeft (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
{{Template:Unicode:UnicodeLeft subtitle}}
{{Template:Unicode:UnicodeLeft subtitle}}
[[Category:Unicode methods|UnicodeLeft function]]
[[Category:Intrinsic methods]]
<!--DPL?? Category:<var>Unicode</var> methods|<var>UnicodeLeft</var> function: Left-most characters of string to specified length-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeLeft</var> (<var>Unicode</var> function): Left-most characters of string to specified length-->
<!--DPL?? Category:<var>System</var> methods|<var>UnicodeLeft</var> (<var>Unicode</var> function): Left-most characters of string to specified length-->


This function returns the left-most characters of the method object string,
This function returns the left-most characters of the method object string,
Line 52: Line 47:
printText {%u:unicodeLeft(10)}
printText {%u:unicodeLeft(10)}
</p>
</p>
==See also==
{{Template:Unicode:UnicodeLeft footer}}

Revision as of 19:12, 26 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)}

See also