首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

Visual Basic中的正则表达试如何写

2012-04-04 
Visual Basic中的正则表达试怎么写?%dimrstrst 1@@@3@5@ rstreplace(rst, 这个表达式怎么写? ,

Visual Basic中的正则表达试怎么写?
<%
dim   rst
rst= "1@@@3@5@ "
rst=replace(rst, "这个表达式怎么写? ", " ")
'想要的结果是rst=135
%>

[解决办法]
dim rst
rst= "1@@@3@5@ "
Dim regEx
Set regEx = new RegExp
regEx.Pattern = "@+ "
regEx.IgnoreCase = True
regEx.Global = True
rst = regEx.Replace(rst, " ")
Response.Write(rst)

热点排行