ASP正则替换空格和回车符函数


ASP #正则 #函数2012-05-09 10:17

处理的时候使用replace函数替换空格可以,但是替换回车换行始终不行,只有求助于正则表达式了。来看个自己写的函数吧:

Function ReplaceEx(strOri,replStr) 
Set regEx=New RegExp 
regEx.Global=True 
regEx.MultiLine=True 
regEx.Pattern="\r\n" 
regEx.IgnoreCase=True 
ReplaceEx=regEx.Replace(strOri,replStr) 
End Function 
shuoming=replace(rs("shuoming")," "," ") 
shuoming=ReplaceEx(shuoming,"<br>") 


相关文章

粤ICP备11097351号-1