码迷,mamicode.com
首页 > 其他好文 > 详细

字符串-01. 在字符串中查找指定字符(15)

时间:2014-07-02 15:02:48      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   c++   

 1 #include<iostream>
 2 #include<string>
 3 using namespace std;
 4 int main(){
 5     string s;
 6     char c;
 7     getline(cin,s);
 8     cin>>c;
 9     if(s.find(c)!=string::npos)
10         cout<<s.substr(s.find(c))<<endl;
11     else
12         cout<<"Not found"<<endl;
13     return 0;
14 }

参考:

  C++输入一行字符串的一点小结

  S?t?r?i?n?g? ?中?字?符?(?串?)?查?找

字符串-01. 在字符串中查找指定字符(15),布布扣,bubuko.com

字符串-01. 在字符串中查找指定字符(15)

标签:style   blog   http   color   os   c++   

原文地址:http://www.cnblogs.com/gnodidux/p/3819987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!