× 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.



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:
VaryingField30 = %Trim(Field30);
%Subst(Field50:
(%Size(Field50) - %Len(VaryingField30)) + 1:
%Len(VaryingField30) = VaryingField30 ;

Without intermediate field:

%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 blanks
either of these will give you an RNX0100 string position error.

Joe



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.