函数
Akahieveman
这个作者很懒,什么都没留下…
展开
-
find函数和erase函数用法
find函数用法:str1.find(str2);在str1中找到str2字符串并输出第一次出现的位置若未找到输出-1;代码:#includeusing namespace std;int main(){ string str1,str2; cin>>str1>>str2; int p=str1.find(str2); printf(转载 2016-07-21 08:15:47 · 648 阅读 · 0 评论 -
取字符串某个特定字符后的字符串 strchr函数
strchr函数返回指定字符串中从左到右第一个指定字符的指针,未找到则返回NULL。函数原型:extern char *strchr(char *str,char character)例如:字符串s为(11,LL),strchr(s,',')+1所对应的字符串是‘LL)',strchr(s,',')对应的字符串是',LL)'。程序代码:#includeusing namespac原创 2016-09-05 21:20:57 · 3108 阅读 · 0 评论 -
sscanf函数基本用法
用法1:从字符串中取数字。代码如下:#includeusing namespace std;int main(){ char s[]={"(11,LL)"}; int v; sscanf(&s[1],"%d",&v); cout<<v<<endl;}运行结果:原创 2016-09-05 21:27:48 · 508 阅读 · 0 评论