@guy038 ,
Thank you. Now, I will have to look at your code, but while I was signed out, I had another one of those epiphany things. :-)
Figured it out with the reduced complexity by allowing everything after the this and stopping before the \) with the lookahead, by using this regex:
\Kthis\.\K(.+)(?=\)) By doing this I was able to remove the longer more complex one that only went 3 levels deep, and reducing my or construct by one or level. This is what I can get now:
FLObjectListSuccess2.PNG
I think I have a problem with overthinking things. :-) I was looking for the one you showed up there, and I might still be able to use it, somewhere else, so thanks.
Lee