An example of characters in ASP.NET
<% @ Import namespace = "system.io"%> <% @ Import namespace = "system.text.regularExpressions"%>
Sub Page_Load (Src As Object, E As EventArgs) Dim strTest As StringstrTest = "A sentence with stuff to replace." No_replace.text = strTeststrTest = Regex.Replace (strTest, "to replace", "replaced") replace.text = STRTESTEND SUB
script>
Original string:
replacement string:
body> html>