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 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.
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 @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