仅获取 CSV URL 的一部分

发布于 2024-10-29 00:49:03 字数 325 浏览 1 评论 0原文

如果您查看 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拿命拼未来 2024-11-05 00:49:03

最简单的解决方案是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文