Link to home
Start Free TrialLog in
Avatar of fb1990
fb1990

asked on

Extracting Specific String

Hello Expert,

I need a code snippet that will help in extracting specific text from a string in oracle.  I have attached my sample data here.  I need to extract 2.2.1.0,2.2.1.0 and 2.2.3.8 in that order

diamond CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup
diamond CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup
diamond Credit Union/2.2.3.8 BatchID/com.diamond.banking00000 BatchPlatformGroup

Open in new window


Thanks in advance for your help!
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Assuming that is three rows of data try this:
select regexp_substr(mycol,'[0-9.]+') from mytable;
If that is one row in a table, try this:

select regexp_substr(mycol,'/([0-9.]+)',1,level,null,1) from mytable
connect by level <= regexp_count(mycol,'/[^/]+/');
If the pattern you are looking for is a series of 4 digits separated by a period

then try this

select regexp_substr(yourstring,'([0-9]\.){3}[0-9]',1,level) from yourtable
connect by regexp_substr(yourstring,'([0-9]\.){3}[0-9]',1,level)  is not null

Open in new window

Avatar of fb1990

ASKER

thanks slightwv and sdstuber.  

The pattern that i am looking for is first 4 digit after the first back slash.  from this example diamond CU/2.2.1.0 example, i need to get 2.2.1.0
Any of the posted code should do that.

To be 100% sure:  We still need to know if your sample data is 3 rows in the table or 1?
Avatar of fb1990

ASKER

sorry... i did not answer that question.

my data is 3 rows.

Thanks.
Then try my fist post instead of the second.  My first post will fail if the credit union name can have a number in it.

Like this:
diamond 1 CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup

If that is a possibility, use sdstuber's.  Just remove the recursion.

select regexp_substr(yourstring,'([0-9]\.){3}[0-9]') from yourtable


Now that will fail if you can have data like:
diamond 1.1.1.1 CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup

If that is a possibility and you really need it after the slash, let us know.
Avatar of fb1990

ASKER

i cannot have data like this diamond 1.1.1.1 CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup

But, i can have data like
diamond 1 CU/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup

or
diamond 1 Credit Union/2.2.1.0 BatchID/com.diamond.banking.0000 BatchPlatformGroup
OK then, go with my altered version of what sdstuber posted.
ASKER CERTIFIED SOLUTION
Avatar of Sean Stuber
Sean Stuber

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of fb1990

ASKER

Thank you slightwv nd sdstuber.  The solution provided by sdstuber worked like a charm