如一段字符串"mmm prod(1,1,1);mmm" 返回的是1,1,1
asp 正则表达式执行的代码是:
Function getParameter(str)
const patrn="(?<=\()+.*?(?=\))"
Set regEx = New RegExp ' 建立正则表达式。
regEx.Pattern = patrn ' 设置模式。
regEx.IgnoreCase = False ' 设置是否区分字符大小写。
regEx.Global = True ' 设置全局可用性。
Set Matches = regEx.Execute(str) ' 执行搜索。
For Each Match In Matches ' 遍历匹配集合。
getParameter= split(Match.Value,",")
Next
End Function
出错:正则表达式语法错误.那位大虾能帮帮,分数不多只有5分了