Im trying to extract details from Cvedetails.com using some loop and regex and i need help with extracting the table data using regex 
-
Possible duplicate of Python regex - stripping out HTML tags and formatting characters from inner HTMLrmutalik– rmutalik2019-05-19 10:50:21 +00:00Commented May 19, 2019 at 10:50
-
1Regular expressions are not the way to deal with markupMarcin Orlowski– Marcin Orlowski2019-05-19 10:52:43 +00:00Commented May 19, 2019 at 10:52
-
Possible duplicate of Parsing HTML using PythonBushuev– Bushuev2019-05-19 13:18:01 +00:00Commented May 19, 2019 at 13:18
-
Please share your coding attemptQHarr– QHarr2019-05-19 15:01:12 +00:00Commented May 19, 2019 at 15:01
Add a comment
|
1 Answer
Usually regex isn't the best way to go when dealing with HTML (or any other markup, for that matter).
Try taking a look in BeautifulSoup package for python