Hi All,
I have data in the form, for eg, [abc-298] xyz [mno-949] links to.
So i need a regex to extract data just before "links to". My output should be 'mno-949'.
Thanks in advance
Solved! Go to Solution.
Hi @binuacs,
Thanks for the reply.
While this solution does work for every string, i need it to be specific for one.
For eg : If I have [askj-29] links to [sdmi-935] related to [287-andad], it returns [287-andad]. when ideally it should be returning[askj-29].
Hope my point is clear.
Thanks
Update your RegEx expression to include " links to":
.*\[(.*)\] links to.*
Hi @binuacs & @Christina_H
Thank u both. The solution worked after adding "Links to"... Thanks a lot