使用 JavaScript 从制表符分隔的文件中提取数据
我正在尝试从制表符分隔的数据文件中提取数据(在某些部分),而且看起来确实很麻烦(我真的希望他们可以将其进行 CSV 编辑)。
数据如下:
http://www.fededirectory.frb.org/FedACHdir.txt
这是格式描述:
www.fededirectory.frb.org/format_ACH.cfm
我想提取此数据并将其存储在服务器端 javascript (ASP) 的数据库中。有什么想法吗?
I'm trying to extract data from a data file that's tab-delimited (in some parts), and really seems like it's going to be a headache to work out (I reallw wish they could just have CSV-ed it).
Here's the data:
http://www.fededirectory.frb.org/FedACHdir.txt
Here's the format description:
www.fededirectory.frb.org/format_ACH.cfm
I'd like to extract this data and store it in a database with serverside javascript, (ASP). Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的文件不是
制表符分隔
...它是位置分隔
。要使用
javascript
处理文件,该文件必须位于同一服务器上并且可通过HTTP
访问。如果您需要将文件上传到某个服务器,服务器端语言需要根据您的 布局文件
为了提取它...您必须执行类似以下操作:
并为文件中的每一行迭代该代码。
在伪代码中:
注意:使用
JavaScript
处理该文件会很痛苦,我建议在应用程序的服务器端执行此操作。Your file is not
tab delimited
... it isposition delimited
.To handle the file using
javascript
, the file must be on the same server and available viaHTTP
.If you need to upload the file to some server, the server side language need to extract all the data based on your layout file
In order to extract it... you must for example do something like:
And
iterate
that code for every line in your file.In pseudo-code :
Note: Process that file with
JavaScript
will be painful I recommend to do it in the server side of your application.