我查看了现有的问题(例如:Get data from webpage using Google Apps Script and Yahoo Query Language),这些问题与我的查询类似,但没有运气。
如何使用UrlFetchApp从bseindia.com获取数据?这是页面:http://www.bseindia.com/stock-share-price/stockreach_financials.aspx?scripcode=532343&expandable=0
现在,例如,如何从上面的页面获得12月14日的收入?在这种情况下,代码应返回2,652.91。
我试过这个:
skos:Concept
我得到的错误是: TypeError:无法在对象中找到函数子字符串
我正在做的事情肯定是不正确的,因为那里的每个收入数字都以相同的" td class = TTRow_right"
开头答案 0 :(得分:0)
您获得的响应不是字符串,而是HTTPResponse类型,因此您不能在其上使用substring(..)。 尝试response.getContentText()
您可以在此处找到更多详细信息http-response