Dim r As String
If r.Contains("src") Then
r.Replace("src=\""", "")
'r.Replace("src='{0}'", "src='http://google.co.in'")
End If
Response.Write(r.ToString())
Response.End()
views:
69answers:
1
+1
A:
Unsure what you mean but it looks like you want to use RegEx replacement. However, Replace methods on String do not support it with your specific syntax.
Carnotaurus
2010-08-14 04:25:50