asp 过滤某字符串中间值
用asp程序,我想实现这样的过滤效果?过滤某中文字符串,两个字符及字符中间的不固定的值。如,两个内容标题【案例一】毕业10年大学的对比【案例十八】学生成绩好坏与未来的关系...
用asp程序,我想实现这样的过滤效果?
过滤某中文字符串,两个字符及字符中间的不固定的值。
如,两个内容标题
【案例一】毕业10年大学的对比
【案例十八】学生成绩好坏与未来的关系
我想把标题中的 【案例一】 和 【案例十八】 给过滤掉
有没有什么方法可以实现? 展开
过滤某中文字符串,两个字符及字符中间的不固定的值。
如,两个内容标题
【案例一】毕业10年大学的对比
【案例十八】学生成绩好坏与未来的关系
我想把标题中的 【案例一】 和 【案例十八】 给过滤掉
有没有什么方法可以实现? 展开
2个回答
展开全部
可以参考一下
<%
function replaceByReg(str1,patrn,str)
dim tempReg
set tempReg=new RegExp
tempReg.IgnoreCase=true
tempReg.Global=true
tempReg.pattern=patrn
str1=tempReg.replace(str1,str)
set tempReg=nothing
replaceByReg = str1
end function
str1="【案例十八】学生成绩好坏与未来的关系"
patrn="【[\s\S]+?】"
str=""
Response.Write replaceByReg(str1,patrn,str)
%>
<%
function replaceByReg(str1,patrn,str)
dim tempReg
set tempReg=new RegExp
tempReg.IgnoreCase=true
tempReg.Global=true
tempReg.pattern=patrn
str1=tempReg.replace(str1,str)
set tempReg=nothing
replaceByReg = str1
end function
str1="【案例十八】学生成绩好坏与未来的关系"
patrn="【[\s\S]+?】"
str=""
Response.Write replaceByReg(str1,patrn,str)
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询