Kernel 8.0 APIs Banner
Office of Information and Technology (OIT) Banner
[skip navigation]

$$CJ^XLFSTR(): Center Justify String

Reference Type: Supported, Category: String Functions, ICR#: 10104

Description

The $$CJ^XLFSTR extrinsic function returns a center justified character string.

Format

  $$CJ^XLFSTR(s,i[,p])

Input Parameters

s:

(required) Character string.

i:

(required) Field size. If this second parameter contains a trailing T, this extrinsic function returns the output truncated to the field size specified.

p:

(optional) Pad character.

Output

returns:

Returns the Center justified string.

Examples

Example 1

>W "[",$$CJ^XLFSTR("SUE",10),"]"
[   SUE    ]

Example 2

>W "[",$$CJ^XLFSTR("SUE",10,"-"),"]"
[---SUE----]

Example 3

>W $$CJ^XLFSTR("123456789",5)
123456789

Example 4

>W $$CJ^XLFSTR(123456789,"5T")
12345