Hi C++ gurus;
Code:
            string strBinAll = s0.ReadToEnd();
            s0.Close();
            string[] records = Regex.Split(strBinAll, "\r\n");
in C# .net one can easily split a chunk of data by e record delimiter into an array...

Now in Vc++ 6.0 is there anything that can get the job done without writing something yourself ?

Cheers