fscanf

Started by
1 comment, last by penetrator 20 years, 8 months ago
I''d like to read floats (they are separated from comma) from a text file which contains also some characters that i want to skip like { } There is a way to skip those chars ?
Advertisement
read the whole file then replace all "unwanted" characters with spaces...
then tokenize the string into pieces and use atof to convert
our new version has many new and good features. sadly, the good ones are not new and the new ones are not good


say the format is...

{0.56,78.6,90.0}


then all u have to do is...

float float1, float2, float3;

fscanf(file, "{%f,%f,%f}", &float1, &float2, &float3);

This topic is closed to new replies.

Advertisement