...
/Project 2: Parsing data from a HTML file with Python and REGEX
Project 2: Parsing data from a HTML file with Python and REGEX
In this project we use REGEX to find some values from a HTML file
We'll cover the following...
In this project, we want to extract tabular information from a HTML file (see below). Our goal is to extract information available between and except the first numerical index (1..6
).
Consider the data.html
file below:
<html>
<head>
<style>
table, th, td {
border:
...