ASP.NET里的字符替换一例

类别:Asp 点击:0 评论:0 推荐:

 

ASP.NET里的字符替换一例

<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Text.RegularExpressions" %>

<script language="VB" runat="server">

Sub Page_Load(Src As Object, E As EventArgs)
Dim strTest As String
strTest = "A sentence with stuff to replace."
no_replace.text = strTest
strTest = Regex.Replace(strTest, "to replace", "replaced")
replace.text = strTest
End Sub

</script>
<html>
<body>
原字符串: <asp:label id="no_replace" runat="server"/>
<hr />
替换后字符串: <asp:label id="replace" runat="server"/>
</body>
</html>

本文地址:http://com.8s8s.com/it/it9463.htm