Replace "

I'm trying to get hyperlinks out of an HTML page and i need to be able to remove " from the string but obviously when i type string.replace(""") it has an error. Now I assume theres some sort of substitute that I can put in just not sure what it is. Wondering if anybody can help me out.

Cheers
Nick Dancer

[346 byte] By [Dancer] at [2007-12-21]
# 1

String.Replace (chr(34),"")

spotty at 2007-9-10 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 2
ok thanks very much. just for future reference is the character code the same as the ascii character codes?
Dancer at 2007-9-10 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 3

You can use String.Replace(""""c,"")

Which is the same as using chr(34)

SJWhiteley at 2007-9-10 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...