|
However the OP wanted to retain data that is in the result field.
Eval or EvalR will clear the field before assigning the value.
-Kurt
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-
bounces@xxxxxxxxxxxx] On Behalf Of Vern Hamberg
Sent: Wednesday, December 01, 2010 8:09 AM
To: RPG programming on the IBM i / System i
Subject: Re: Moving a field and removing blanks
But EVALR trumps them all - as other posts have suggested. No
intermediate field - no substring - no length function.
It came out in V4R4, so far as I can tell, so everyone should be able
to use it.
Nothing much cleaner than
evalr text = %trim(text);
Vern
On 11/30/2010 9:59 PM, Joe Pluta wrote:
On 11/30/2010 5:56 PM, Alan Campin wrote:blanks
VaryingField30 = %Trim(Field30);Without intermediate field:
%Subst(Field50:
(%Size(Field50) - %Len(VaryingField30)) + 1:
%Len(VaryingField30) = VaryingField30 ;
%Subst(Field50:
(51 - %Len(%Trimr(Field30))):
%Len(%Trimr(Field30)))
= %Trimr(Field30);
With an intermediate field, Alan's is probably the best. And even
overall, I like Alan's because it only trims the field once. That's
worth the tradeoff of an intermediate field. Note that either
method will require you to check for a blank string; if Field30 is
all
either of these will give you an RNX0100 string position error.--
Joe
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at http://archive.midrange.com/rpg400-l.
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.
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.