UnicodeSubstring (Unicode function)

From m204wiki
Revision as of 08:55, 10 December 2010 by Admin (talk | contribs) (1 revision)
Jump to navigation Jump to search

Substring at specifed of string to specified length

This function returns a specific number of characters starting at a specific position in the method object Unicode string, possibly padding it on the right.

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

Syntax

  %outUni = unicode:unicodeSubstring(  start, length   -
                                    [, Pad=char] )

Syntax Terms

%outUni
A Unicode variable to receive the result of the UnicodeSubstring method.
unicode
A Unicode string.
start
The character position in the method object that is the starting point of the substring that is returned. The first character from the left in the method object is position 1.
length
The number of characters to return. If the method object has fewer characters than the requested number of characters (starting at the start position), it is either padded to the requested length, or the entire method object starting at the start position is returned with no padding, depending on the value of the pad parameter.
Pad=char
The character used to pad the result 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 must be a non-negative number. A negative number results in request cancellation.
  • The pad parameter must be either null or a single character. A longer value results in a compilation error.
  • If the starting position is known to be 1, it might be tidier and slightly more efficient to use the UnicodeLeft method instead of UnicodeSubstring.
  • The UnicodeSubstring method is analogous to the String intrinsic Substring method (??Substring).

Examples

The following statement places into %y the 5 characters of %x starting at the third character. If %x is shorter than 7 characters, then all of %x is copied into %y:

    %y = %x:unicodeSubstring(3, 5)

The following statement displays C?!:

    %u is unicode initial('ABC¡':U)
    printText {%u:unicodeSubstring(3,3, pad='!')}

The question mark in the result represents a valid EBCDIC character that is not displayable. The U constant function used in the example is described ??U. For information about the PrintText statement, see the list item ?? refid=intprnt..