Answered
Stripping out characters
I have an <img string that I want to manipulate. Here is
the string.
<img src=" http://site.com/1.jpg" width="177" height="240" alt="image" />
The first thing I want to do is strip out the <img src=" and that is common on all the paths I want to manipulate so I thought I could do a simple Replace(). Then I'd end up with http://site.com/1.jpg" width="177" height="240" alt="image" />
I need to strip everything else off that string after the "
I'm not sure how to do that... can anyone help me out?
By the way, BKBK and Ian... that logout code is logging me out on all machines except my laptop at home. I'm about 80% satisfied with it. I still want to know why it won't work from my laptop.
<img src=" http://site.com/1.jpg" width="177" height="240" alt="image" />
The first thing I want to do is strip out the <img src=" and that is common on all the paths I want to manipulate so I thought I could do a simple Replace(). Then I'd end up with http://site.com/1.jpg" width="177" height="240" alt="image" />
I need to strip everything else off that string after the "
I'm not sure how to do that... can anyone help me out?
By the way, BKBK and Ian... that logout code is logging me out on all machines except my laptop at home. I'm about 80% satisfied with it. I still want to know why it won't work from my laptop.
