Feb-05-2020, 03:47 PM
Use a parser
for HTML and not regex.

from bs4 import BeautifulSoup html = '''\ <td class="text-center">28,426</td> <td class="text-center">240</td> <td class="text-center">6,893,221</td>''' soup = BeautifulSoup(html, 'lxml') td_tag1 = soup.select('td:nth-child(2)') # Using CSS selector td_tag2 = soup.find_all('td')Use:
>>> td_tag1 [<td class="text-center">240</td>] >>> td_tag1[0].text '240' >>> >>> td_tag2[1] <td class="text-center">240</td> >>> td_tag2[1].text '240'