Link to home
Create AccountLog in
Avatar of Member_2_4426104
Member_2_4426104

asked on

how do i strip all tags incl quotes cdata - Regex.Replace

Hi,
I have the following which works great and strips all the html tags from my xml file where applicable:

Dim sMetaDesc As String = Regex.Replace(XPath("summary"), "<[^>]+>", "")

But I also need it to be able to remove quotes  "" .

What should the statement look like to do this?

Thanks
T
ASKER CERTIFIED SOLUTION
Avatar of tillgeffken
tillgeffken

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of Member_2_4426104
Member_2_4426104

ASKER

perfect!
thanks
Tania