How to Read a Pipe separated file

Feb 23, 2011 at 9:06am
Hi Friends I have a problem while reading the pipe separated file.

I want to read pipe separated data in the file. Is any function is available to read the data by providing deliminator as |. I have used CreateFile windows function to open the file.

How the fscanf function will help to get this.
Thanks
Last edited on Feb 23, 2011 at 9:32am
Feb 23, 2011 at 12:43pm
Feb 23, 2011 at 2:29pm
Last edited on Feb 23, 2011 at 2:30pm
Feb 24, 2011 at 5:19am
Solution for reading pipe separated file.

FILE *fp = _tfopen(L"c:\\a.pp",L"r");

wchar_t pp[1024];

while(!feof(fp))

{

_ftscanf(fp,L"%[^|]|",pp);

}
Topic archived. No new replies allowed.