28,409
社区成员




Set reg = New RegExp
reg.Global = True
reg.IgnoreCase = True
reg.Pattern = "(.*?)pl_show\(\'(.*?)\'(.*)?"
str="<div onmouseover=""foot('第一个');pl_show('这里的内容是任意的,可能是数字,或者中文或者英文',this)"" onmouseout=""pl_hide()"" style=""float: left; cursor: default"">"
str=reg.Replace(str,"$2")
response.Write str&"<br>"
Set reg = New RegExp
reg.Global = True
reg.IgnoreCase = True
reg.Pattern = "(.*?)pl_show\((.*?)\)(.*)?"
str="<div onmouseover=""foot('第一个');pl_show('这里的内容是任意的,可能是数字,或者中文或者英文',this)"" onmouseout=""pl_hide()"" style=""float: left; cursor: default"">"
str=reg.Replace(str,"$2")
response.Write str&"<br>"
Set reg = New RegExp
reg.Global = True
reg.IgnoreCase = True
reg.Pattern = "(.*?)pl_show\((.*?)\)""\s\S(.*)?"
str="<div onmouseover=""foot('第一个');pl_show('这里的内容是任意的,可能是数字,或者中文或者英文',this)"" onmouseout=""pl_hide()"" style=""float: left; cursor: default"">"
str=reg.Replace(str,"$2")
response.Write str&"<br>"