C++ string8类的find()函数怎么用
例如 :
#include <iostream> #include <string> using namespace std; int main() { string str="01234567890000"; int a; a=str.find("0"); cout<<a<<endl;//返回0 a=str.find("123"); cout<<a<<endl;//返回1 a=str.find("456"); cout<<a<<endl;//返回4 system("Pause"); return 0; } 查到第一个就返回,不管以后有几个,字符串就返回第一个字符的位置,从0开始数,运行下会更清楚C语言用fscanf()函数如何读取文件全部内容?
有一个文件,我知道数据在其中的存储格式,比如txt文件,所有数据都是以"%d %d %d %d %d\n"格式存储的: 1 1 1 1 1 2 2 2 2 2 ......... 但是我不知道文件的长度,如何用fscanf()函数以同样的格式读取整个文件。 或者用其它函数也行,但格式要相同。int []account; for(int i=0;!feof(file_p);++i) /*file_p是文件标识符*/ { fscanf(file_p,"%d",account[i]); }
其他参考 : http://blog.csdn.net/liangxanhai/article/details/8026496C语言文件操作函数
http://see.xidian.edu.cn/cpp/u/hs6/