Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
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