开发者

Regarding CSV File Format SPLIT

开发者 https://www.devze.com 2022-12-20 17:31 出处:网络
I am planning to modify the file format so that eac开发者_StackOverflow社区h field should be enclosed in by double quotes mandatory \"A\",\"Field1\",\"Field2\",\"Field3\",\"Fi\"el,d\",\"Fi\"\"eld\", I

I am planning to modify the file format so that eac开发者_StackOverflow社区h field should be enclosed in by double quotes mandatory "A","Field1","Field2","Field3","Fi"el,d","Fi""eld", I want the separator to be combined i.e to be ", (double quotes followed by comma) how do i change the below split command to include two separator ", (double quote and comma) together line.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)",15);


how do i change the below split command to include two separator ", (double quote and comma)

This would do it:

line.split("\",");

You'd need to trim the extra quotes that aren't removed by the split. You could also consider splitting on "\",\"" instead.

However, instead of reinventing the wheel, I'd suggest that you try to find an existing CSV reader for your platform. It will be better and faster and a lot less work.


In our application we also supported comma-separated files for years. All went well until customers started to add double quotes into strings. We solved that problem by also allowing the values to be embedded in single quotes (and not allowing single quotes between double quotes, or double quotes between single quotes), but then customers wanted to add both single and double quotes in strings, or couldn't generate this file in an easy way anymore because the embracing characters depended on the values.

Then we started supporting backslashes, but things only became worse.

We finally solved the problem by using TAB as separator (instead of comma). TAB's never appear in string values. No quotes needed anymore. Problem solved.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号