Hello Everyone,
I want to extract Table from Outlook Mail Body without using Data scraping. The input should be the Mail and Datatable should be the Output.
Can anyone help me
Hello Everyone,
I want to extract Table from Outlook Mail Body without using Data scraping. The input should be the Mail and Datatable should be the Output.
Can anyone help me
Hi @Sanjit_Pal This custom activity is not supported in Windows Projects. It was available only for legacy based systems.
mailMessage.Body
property.<table>
and <tr>
tags, you can use the pattern "<table.*?>(.*?)</table>"
to match the entire table.match.Groups("1").ToString()
expression. This will give you the content of the first capturing group in the regular expression pattern, which should be the table content.Hey @raja.arslankhan
The above regex is not working. there is no table mentioned in the HTML text of the Mail, Although <\table> is present. I am actually confused here
Hi @RajKumar_DC
I don’t want it via DataScraping