Hi C++ gurus;
in C# .net one can easily split a chunk of data by e record delimiter into an array...Code:string strBinAll = s0.ReadToEnd(); s0.Close(); string[] records = Regex.Split(strBinAll, "\r\n");
Now in Vc++ 6.0 is there anything that can get the job done without writing something yourself ?
Cheers




Reply With Quote