Hello... I have problem with regex, I want to get the tables from another site... the regex is re.compile(r'(.*?)') but when I get the tables I don't know how to return the value into the tables.
#html = the page
tbl = re.compile(r'<table.*?>(.*?)</table>')
return tbl.sub('', html) #return html without <table>...</table>
# how to return the value only of <table> tags... without the other tags ?
Thanks.
I suggest
the_list = tbl.findall(html)
There is also finditer which returns a sequence of match objects.
Gribouillis
Posting Maven
2,781 posts since Jul 2008
Reputation Points: 1,024
Solved Threads: 691