I would like to parse out any HTML data that is returned wrapped in CDATA.
As an example <![CDATA[<table><tr><td>Approved</td></tr></table>]]>
Thanks!
|
|
The expression to handle your example would be
Where the group "text" will contain your HTML. The C# code you need is:
The "input" variable is in there just to use the sample input you provided |
|||||
|
|
I know this might seem incredibly simple, but have you tried string.Replace()?
There are probably more efficient ways to handle this, but it might be that you want something that easy... |
||||
|
|
|
Not much detail, but a very simple regex should match it if there isn't complexity that you didn't describe:
|
|||||||||
|
|
|
||||
|
Why do you want to use Regex for such a simple task? Try this one:
|
|||
|
|