【软件自动化测试 - VBScript 8】== Questions?—— 正则表达式问题?


Set myReg = New RegExp
myReg.Global = True
myReg.IgnoreCase = True
myReg.Pattern = "[a-z0-9]{2,7}@163.com"
msgbox myReg.Test("[email protected]")
msgbox myReg.Test("[email protected]")


“msgbox myReg.Test("[email protected]")  


” 这个为什么返回True



你可能感兴趣的:(【软件自动化测试 - VBScript 8】== Questions?—— 正则表达式问题?)