I am using c# console app to get xml document. Now once xmldocument is loaded i want to search for specific href tag:
href="/abc/def
inside the xml document.
once that node is found i want to strip tag completly and just show Hello.
<a href="/abc/def">Hello</a>
I think i can simply get the tag using regex. But can anyone please tell me how can i remove the href tag completly using regex?