LJUST: Left-Justifying a String

How to:

LJUST left-justifies a character string.


Top of page

x
Syntax: How to Left-Justify a Character String
LJUST(length, source_string, output)

where:

length

Integer

Is the number of characters in source_string and output.

source_string

Alphanumeric

Is the character string to be justified.

output

Alphanumeric



Example: Left-Justifying a String

LJUST left-justifies FNAME and stores the result in a column with the format A25:

LJUST(15, FNAME, 'A25')

iWay Software