Hi I have the following string :
<img src="
http://localhost"/DotNetNuke/DNNuke/Portals/0/Me.jpg" originalAttribute="src" alt="" width="160" border="0" height="119" /><br />
What I want to do is use vb.net code to get rid of that " marked in red.
I have tried String.Replace("""/", "/")
and String
.Replace("" & Chr(34) & "/", "/")
as well as one horrible attempt using substrings. It was ugly :)
But so far nothing has worked.
Some posts I have been reading have involved stuff with regular expressions but regular expressions make my head hurt so I would like to avoid them if possible.
Any advise would be appreciate.
Thanks!