/* Name: NYOJ--113--字符串替换 Author: shen_渊 Date: 18/04/17 15:41 Description: 字符串水题,秒过 */ #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); string str; const string syou = "you"; const string swe = "we"; while(getline(cin,str)){ int pos; while((pos = str.find(syou)) != string::npos){ str.erase(pos,); str.insert(pos,swe); } cout<<str<<endl; } ; }
相关文章
- 08-10C++与C字符串相关知识点
- 08-10类(传入的形参为指针形式)-字符串的实现
- 08-10字符串类 class string
- 08-10hive 分隔符替换
- 08-108行代码的模板字符串替换函数
- 08-102021-10-20:分数到小数。给定两个整数,分别表示分数的分子numerator和分母denominator,以字符串形式返回小数。如果小数部分为循环小数,则将循环的部分括在括号内。输入: num
- 08-10【每日一题】Leetcode - 面试题 01.06. Compress String LCCI(字符串压缩)
- 08-10python中字符串(str)的常用处理方法
- 08-10[NOIP2020] 字符串匹配
- 08-10完整的用户代理字符串检测