I am using this regex formula: (?<=()\w+(?=)) I want to extract text from between parens. The workflow completes successfully, but no data is returned. If I use other delimiters like, # or <>, data is returned.
Is there a regex formula that will return text from between parens?
Thanks!
Dave
Solved! Go to Solution.
what about this
(?<=\()\w+(?=\))
Marian Hatala's solution works for me -- and if you want to play with it a bit, try RegExr: Learn, Build, & Test RegEx -- that's where I play with all the Regular Expression requirements.