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



"TRANSLATE" all alphabetical characters (and symbols) to blanks, then trim...

AGlauser@xxxxxxxxxxxx wrote:

Hi all,

I've looked through the SQL reference for DB2 for iSeries, and haven't found anything yet. Hoping someone can suggest a combination of functions or one that I missed that can work like the %check() RPG opcode. %check( verification string : search string) returns the first occurrence of a character in 'search string' that does not appear in 'verification string'.

The best I've come up with so far is:

select CASE WHEN SUBST(prtnum, 1, 1) IN ('0','1','2','3','4','5','6','7','8',
'9') THEN prtnum
        WHEN SUBST(prtnum, 2, 1) IN ('0','1','2','3','4','5','6','7','8',
'9') THEN SUBST(prtnum, 2)
        WHEN SUBST(prtnum, 3, 1) IN ('0','1','2','3','4','5','6','7','8',
'9') THEN SUBST(prtnum, 3)

and so on (for 25 characters). Please be gentle, I think it's just as ugly as you do :)

The requirement is to extract the numeric portion of a part number, to try to group part numbers "logically". For example, GR1234 might be similar to RG1234, 1234ABC, and ABC1234DEF. I expect I'll have to end up using either embedded SQL, an stored procedure, or some other programming solution.

All suggestions welcome,
Adam


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

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.