For e.g. one > two > three > four > five
word four should be the resulting string.
I have this expression for matching the desired output: (?<=^(\w+\s>\s){3})(\w+).
But it returns the empty string using this:
REGEXP_SUBSTR (t.column, '(?<=^(\w+\s>\s){3})(\w+)').
What is wrong here?
Thank you.
Note: strings separated by '>' sign can be composed of two or more words. For example:
one > two > three > four1 four2 > five should return four1 four2
