views:

69

answers:

1
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()
+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