GREP to find words before or after > symbol
Hi guys,
I wonder if you can give me a little push in the right direction with this GREP code.
I want to find words which come before/after a space and a greater than symbol.
(?<=\s>)?\w+(?=\s>)
This is what I have but it doesn't find words which come after the symbol.
Menu > Menu > Menu
Would only find the first 2 Menus.
Thanks everyone ![]()
