Need to convert HTML table in mail body into data table without using DATASCRAPING

Hi everyone,

I need to bring HTML table in mail body into a data table using string manipulations or REGEX without using Data Scraping.

Please help me out on this.it is very urgent and important to do.

Regards,
Roman reigns.

Hi @User_98

Can you share the sample input

Regards

@User_98

Use cml parser and then use loop on the parsed output and create a table

Deserialize is what will help

Cheers

Hi @vrdabberu ,

Thank you for your reply. Here is the sample HTML table please find it.

Regards,
Roma reigns.

Hi @User_98

Please check on below post

Cheers!!

Hi @lrtetala ,

I should use only REGEX or string manipulations to extract table from mail body. That is the requirement.

Regards,
Roman reigns.

Hi @User_98

Use an assign activity and then use the below regex expression and that might extract the data you required.

RequiredDate = System.Text.RegularExpressions.Regex.Match(CurrentMail.Body.ToString,"(col1([\s\S]*?[A-Z][a-z]+\d+)+)").Value

Hope it works!!

Regards