仅获取 CSV URL 的一部分
如果您查看 Yahoo Finance,您可能会注意到您可以使用 URL 从其服务器检索信息,这可能会生成 CSV 文件。我们以这个 URL 为例:http://download.finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s=USDBRL=X
,它将返回this:
"USDBRL=X",1.6294,"3/31/2011","12:06pm"
但是我如何使用该 URL 来检索该信息并使用 Javascript 仅存储货币值(1.6294
)部分?
If you take a look at Yahoo Finance, you may notice that you can retrieve information from their servers using a URL, that might lead to a CSV file. Let's use as example this URL: http://download.finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s=USDBRL=X
, it will return this:
"USDBRL=X",1.6294,"3/31/2011","12:06pm"
But how I can use that URL to retrieve that information and store only the money value(1.6294
) part using Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的解决方案是使用 str.split(",") 将字符串拆分为数组并获取第二个元素。这并不完全安全(它假设第一列中没有逗号),但对于简单的脚本来说它可能足够强大。
The simplest solution is to split the string into an array using
str.split(",")
and take the second element. This is not completely bulletproof (it assumes there are no commas in the first column), but it might be robust enough for a simple script.