× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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, ' ')


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.