使用分隔符拆分字符串,并支持缺失值C99

时间:2015-09-17 11:07:41

标签: c string char c99 strtok

我有一个文本文件,其中包含格式类似的数据行

int,int,int,string,string,int

我使用strtok()sscanf()等功能时遇到的问题是每个字段都不能保证包含数据。

一些示例行

12,3,4,example,withoutspace,57
3,,1,,t e s t,892
78,,,example with url,http://www.website.com/asd/asd/asd,2

基本上,我需要从C#复制String.Split(),它会返回一串字符串(包括空字符串)。

0 个答案:

没有答案