xpath抓取数据值有\r\n\t时,去掉的方法normalize-space()
主要使用:normalize-space()
之前写法:response.xpath('//*[@id="to"]/tbody/tr/td[3]/a/text()')
修改后:response.xpath('normalize-space(//*[@id="to"]/tbody/tr/td[3]/a/text())')