Can anyone send me on the right directions to how I can learn/do parsing of html tables into csv files.
Is it only through regex I can do it? I've spent hours and cant figure it out.
if you wish to avoid using regex for every single cell... than what you need to do is use regex to extract complete table, and than just use replace in order to replace <tr>,</tr> with nothing, and to replace </td>,</td> with some delimiter which you wanna use in your csv file... That should be simple enough