首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > ASP > 一种分析和编写CSV库

一种分析和编写CSV库

  • 资源大小:32.34 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: CSV 分析 编写

资 源 简 介

# Description # A library for parsing and writing comma separated values (CSV). This will parse or write CSV as specified on http://en.wikipedia.org/wiki/Comma-separated_values and allow for use of any delimiter. Please allow me to explain some of the unique aspects of comma separated values. 1. They are surprisingly complex to parse. 1. Fields that contain commas, double-quotes, or line-breaks must be quoted. 1. A quote within a field must be escaped with an additional quote immediately preceding the literal quote. 1. Space before and after delimiter commas may not be trimmed. # Features # 1. Takes care of all of the unique aspects of CSV listed above. 1. Highly configurable with many different input sources. 1. Provides three types of parsing: 1. all in memory. 1. streaming (non-blocking). 1. event based callback. 1. The delimiter is configurable. 1. Configurable quoted value length to prevent the parser from reading to the End Of File when a quote
VIP VIP
0.199856s