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("summa ry"), "<[^>]+>", "")
But I also need it to be able to remove quotes "" .
What should the statement look like to do this?
Thanks
T
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("summa
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
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
thanks
Tania