How to extract a table from a email body into collection

RsBhargav

Member
Hi All,

I have a requirement where i need to read a table (fixed columns and variable rows) present in mail body into a collection. Please share your thoughts on how to achieve this.Thanks in advance
 

Sachin_Kharmale

Active Member
If you are getting response in HTML format then with the help of <td><tr><th><table> you can easily extract table data.
and put in collection.
 

RsBhargav

Member
If we get it as regular text then can you help me with the approach. I worked with strings, split lines and assigning to collection. But it is bit lengthy.
 
Top