摘要:
首先,让我们来了解一下究竟什么是VBScript的“正则表达式”对象,我们先来看一段程序:Function CheckExp(patrn, strng) Dim regEx, Match ’ 建立变量。 Set regEx = New RegExp ’ 建立正则表达式。 regEx.Pattern = patrn ’ 设置模式。 regEx.IgnoreCase = true ’ 设置是否区分字符大小写。 regEx.Global = True ’ 设置全局可用性。 Matches = regEx.test(strng) ’ 执行搜索。 CheckExp = matchesEnd ... 阅读全文