asp正则获取 标签div中的所有内容 如<div>你好</div>,获取的结果是“你好” 用asp配合正则,完整代码谢谢
3个回答
展开全部
这样就可以:
<%
Dim strContent
Dim regEx, Match, Matches ' 建立变量。
strContent = "<div>你好</div>"
Set regEx = New RegExp ' 建立正则表达式。
regEx.Pattern = "(<div>)(.[^<]*)(</div>)" ' 设置模式。
regEx.IgnoreCase = True ' 设置是否区分大小写。
regEx.Global = True ' 设置全局替换。
Set Matches = regEx.Execute(strContent) ' 执行搜索。
For Each Match in Matches ' 遍历 Matches 集合。
Response.Write Match.SubMatches(1) & "<br>"
Next
%>
<%
Dim strContent
Dim regEx, Match, Matches ' 建立变量。
strContent = "<div>你好</div>"
Set regEx = New RegExp ' 建立正则表达式。
regEx.Pattern = "(<div>)(.[^<]*)(</div>)" ' 设置模式。
regEx.IgnoreCase = True ' 设置是否区分大小写。
regEx.Global = True ' 设置全局替换。
Set Matches = regEx.Execute(strContent) ' 执行搜索。
For Each Match in Matches ' 遍历 Matches 集合。
Response.Write Match.SubMatches(1) & "<br>"
Next
%>
展开全部
ASP是服务器语言,它不能识别客户端代码,更无法使用正则去判断客户端代码的对错
追问
不考虑网页问题,我需要完整的asp代码 从字符串你好,得到结果“你好”如:
Set red = New RegExp
red.IgnoreCase = True
red.Global = True
red.Pattern="(?)([\s\S]*?)(?=\)"
red.Execute(字符串)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用jq获取.在ajax传递.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询