|
On 04-Dec-2014 15:15 -0600, Hoteltravelfundotcom wrote:
I have one field in a file that is char 8
the data has been entered right justified
Is there a q&d way to left justify this field?
Barely quicker than both of the already suggested TRIM [SQL] and %TRIM
[RPG] builtin functions, is a "left trim" function available in both
languages; LTRIM [SQL] and %TRIML [RPG]. The TRIM functions will look for
and trim any trailing blanks.
update the_file
set the_char8_field = LTRIM(the_char8_field)
The SQL scalar function STRIP can limit the trimming to only blanks; the
LTRIM will trim either blank or hex-zero characters.
update the_file
set the_char8_field = STRIP(the_char8_field, LEADING, ' ')
--
Regards, Chuck
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.