Advertisement
kilo

Extract TV series episodes from Wikipedia tables

Dec 21st, 2019
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.clear();
  2. var tables = document.getElementsByClassName("wikiepisodetable");
  3. [].forEach.call( tables, function ( table, i ) {
  4.     [].forEach.call( table.rows, function ( row, j ) {
  5.         if (j > 0) console.log("S" + `${i+1}`.padStart(2, "0") + "E" + `${j}`.padStart(2, "0") + "." + row.cells[2].innerText.replace(/\"/g,""));
  6.     });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement