I'm using the replace function like this
Replace(String, "size="2">", "")
But of course that wouldn't work because there are four quotes! What do I do!
Printable View
I'm using the replace function like this
Replace(String, "size="2">", "")
But of course that wouldn't work because there are four quotes! What do I do!
replace them with pairs of quotes:
Code:Replace(String, "size=""2"">", "")
[Edited by gfk on 11-10-2000 at 08:04 AM]Code:Replace(String, "size=" & Chr$(34) & "2" & Chr$(34) & ">", "")
K thanx