I have a string RE|BN|FLEX100|D7|LMB1333| and I am trying to extract the value between 2nd and 3rd ‘|’ i.e. FLEX100.
I have tried REGEXP_SUBSTR ( ‘RE|BN|FLEX100|D7|LMB1333|’, ‘|([^|]*)|’,1,1,NULL,1) but it is giving me BN instead of FLEX100.
Would really appreciate any help on how to update my regex to extract FLEX100 from the above text.