When doing an extracted field can the regex named capture group be based on a back reference. The idea is I would have an unamed capture group followed by a named capture group using /1 as the name so the name is what was first captured in the unamed group. I know the following does not work but im hoping some small change might make it work:
(?<\1>.*?)
can't seem to edit but wanted to mention I tried
(?<$1>.*?)
as well