I have a field with following values, now i want to extract only those rows with "xyz" in the field value mentioned below, can you please help?
        Mydata_xyz_aug21
        Mydata2_zzz_aug22
        Mydata3_xyz_aug33
One more requirement
I want to extract only "aIBM_MyProjectFile" from following string below, can you please help me with this?
finaldata/mydata/aIBM_MyProjectFile.exe.ld
I've tried this but it didn't work.
select 
regexp_substr('FinalProject/MyProject/aIBM_MyProjectFile.exe.ld','([^/]*)[\.]') exp 
from dual;
 
     
     
    