Lookbehind on regex for VBA?

前端 未结 2 1791
轮回少年
轮回少年 2020-11-28 14:38

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

2条回答
  •  遥遥无期
    2020-11-28 15:04

    How about putting the ^A in a non-captured group and using the SubMatches property of the Match object to get your matched value?

提交回复
热议问题