top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to extract the number(0-9) from the string in informatica? [CLOSED]

+1 vote
312 views

I want to extract the number(0-9) from the string. e.g.
1.if src is *J$456*&56 then tgt should be 45656
2.if src is &*(>123>>789&^ then tgt should be 123789

This is just an example, special characters or alphabets are random in string, so how to extract only numbers?

posted Mar 7, 2014 by Madhavi Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

You'd need to replace all other characters with an empty string. Try

REG_REPLACE(COLUMN_NAME, '[^0-9]', '')
answer Mar 7, 2014 by Shweta Singh
...