here are some Regular expressions for html parsing . you can use it in your application while parsing html table to fetch data from it
-
Table Expression = “<table[^>]*>(.*?)</table>”
-
Header Expression = “<th[^>]*>(.*?)</th>”
- Row Expression = “<tr[^>]*>(.*?)</tr>”
- Column Expression = “<td[^>]*>(.*?)</td>”