Get rid of Null in a table

Hello,

I've been trying to scrape data from a webpage and I've managed to get the key words I want from the table as well as the table itself. However, it seems to come up with Null and also separate the tables. Is there any way I can get rid of Null?

Url: Sports Forecaster

Sitemap:
{"_id":"transactions","startUrl":["https://sportsforecaster.com/nhl/p/10001/Kevyn_Adams/transactions"],"selectors":[{"id":"table","parentSelectors":["_root"],"type":"SelectorElement","selector":"div.player-section","multiple":true,"delay":0},{"id":"missed-games","parentSelectors":["table"],"type":"SelectorText","selector":"td.d-flex","multiple":true,"delay":0,"regex":"(Missed)+ [0-9]+ (games)+"},{"id":"last-reg-szn-games","parentSelectors":["table"],"type":"SelectorText","selector":"td.d-flex","multiple":true,"delay":0,"regex":"(Missed)+ (the)+ (last)+ [0-9]+ (regular)+ (season)+ (games)"}]}

Hi @TristMist

You should target every row, not the table, and not use the 'Multiple' option for the child selectors.

Example:

{"_id":"transactions","startUrl":["https://sportsforecaster.com/nhl/p/10001/Kevyn_Adams/transactions"],"selectors":[{"delay":0,"id":"table","multiple":true,"parentSelectors":["_root"],"selector":"tr:nth-of-type(n+2)","type":"SelectorElement"},{"delay":0,"id":"description","multiple":false,"parentSelectors":["table"],"regex":"","selector":"td.d-flex","type":"SelectorText"},{"delay":0,"id":"date","multiple":false,"parentSelectors":["table"],"regex":"","selector":"td:nth-of-type(1)","type":"SelectorText"}]}