标签:pos code etl 长度 输出 难度 span man nbsp
you are what you do
we are what we do
读一行的方法:用geiline(cin,s)
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main(){ 6 string s; 7 string s1 = "you", s2 = "we"; 8 while(getline(cin, s)){ 9 int index = s.find(s1, 0); 10 while(index != s.npos){ 11 s.replace(index, 3, s2); 12 index = s.find(s1, index + 1); 13 } 14 cout << s << endl; 15 s = ""; 16 } 17 return 0; 18 }
nyoj 113 字符串替换 (string中替换函数replace()和查找函数find())
标签:pos code etl 长度 输出 难度 span man nbsp
原文地址:http://www.cnblogs.com/qinduanyinghua/p/6411375.html