|
I was wondering how I could strip any non numberic characters from a set of numbers submitted via a html form. For example (504) 555-5555 would be 5045555555 or 504-555-5555 would be 5045555555 Like %trim does with spaces is there something to deal with non-numberics? --
------------------------------------------------------------------
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.