我想匹配任何字符(不区分大小写),除非前面有一个单引号,然后是 On Error Goto 文本:
匹配:
on error goto err_handler
if aap = 0 then on error goto Myerrorhandler
on error goto errorhandler1
on error goto errorhandler2
不符合:
' on error goto errorhandler3
' if aap =0 then on error goto errorhandler4
Any line not containing On Error Goto
我试过了:[^']*(On Error Goto)
但这没有用。
用于测试程序中是否使用了Errorhandler
谢谢!