I have a string that contains dynamic HTML content.
I want to be able to find and replace all occurrances of specific HTML tags and replace them, but not the content within them.
The specific HTML tags would be for a table - i.e. TABLE, TR, and TD. The tags may contain attributes, or they may not. How would one go about doing this in C#?
Thanks in advance for any help!