string a = node.SelectSingleNode("./td[position() = 5]").InnerText;
string pts = node.SelectSingleNode("./td[position() = 6]/span").InnerText;
you are looking for the 6th td "td[position() = 6]" in the row and then the span inside that td "/span" and then to get the text inside the span..
string pts = node.SelectSingleNode("./td[position() = 6]/span").InnerText;
you are looking for the 6th td "td[position() = 6]" in the row and then the span inside that td "/span" and then to get the text inside the span..