使用Excel中的VBA测试如下(匹配式为:^((?!2950).)*$): Sub Regs() Dim RegEx As Object Set RegEx = CreateObject("VBScript.regexp") Dim s, mat s = "399295078" RegEx.Pattern = "^((?!2950).)*$" RegEx.Global = True MsgBox RegEx.test(s) Set RegEx = Nothing End Sub 如果匹配2950,则返会false,否则为true。 其中,(?!2950)表示不匹配2950, 而^表示匹配字符串的开始位置, .表示匹配...[ 查看全文 ]