|
Jeffrey, The article I was talking about is at this link. It does the job and has the source that you can cut/paste into your editor of choice.
http://www.mcpressonline.com/mc?1@xxxxxxxxxxxxxxxx@.6ae9a226
-Bob
------------------------------------------------------------------
D i s 10i 0
D source s 50a varying
D target s 50a varying
/free
source = 'jafgjh934hdfg94k3ghsd0jdfg0345jdfg';
target = ''; // Extract digits out of source string
for i = 1 to %len(source);
if '0' <= %subst(source:i:1) and %subst(source:i:1) <= '9';
target += %subst(source:i:1);
endif;
endfor; // Display results
dsply source;
dsply target;
*inlr = *on;
/end-free
------------------------------------------------------------------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.