我有一个文本文件,其中包含格式类似的数据行
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(),它会返回一串字符串(包括空字符串)。