Is there a way to do negative and positive lookbehind in VBA regex?
I want to not match if the string starts with \"A\", so I am currently doing ^A at the start of t
How about putting the ^A in a non-captured group and using the SubMatches property of the Match object to get your matched value?