Hello everybody,
I would like to parse an HTML table, that is provided in the body of an email, which I extract with the Outlook 365 Beta Tool. I tried with the REGEX parse tool (and other tools), but I can't seem to find the right expression.
After looking at the extracted code I figured out that the headers are between <p class="MsoNormal"><b> and </b></p>
and the information is between <p class="MsoNormal"> and</p>.
Some of the expressions I tried: [<]p\sclass[=]["]MsoNormal["][>](.*?)[<]\/p[>]
"MsoNormal(.*?)[<]\/p[>] -> this pulls something through but not what I want
Maybe the answer is really easy, but I overlook it.
Happy Friday!