博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串忽略大小写
阅读量:4953 次
发布时间:2019-06-12

本文共 942 字,大约阅读时间需要 3 分钟。

hihocoder1082

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define lson l, m, rt<<114 #define rson m+1, r, rt<<1|115 #define IO ios::sync_with_stdio(false);cin.tie(0);16 #define INF 0x3f3f3f3f17 #define MAXN 10001018 const int MOD=1e9+7;19 typedef long long ll;20 using namespace std;21 int t, n, m;22 string s, ss, a = "marshtomp", b = "fjxmlhx"; 23 int main()24 {25 IO;26 while(getline(cin, ss)){27 s = ss;28 transform(s.begin(), s.end(), s.begin(), ::tolower);//全部转小写字母 29 int t = s.find(a);//找(串)30 while(t != -1){31 ss.erase(t, 9);s.erase(t, 9);//擦除(位置,个数)32 ss.insert(t, b);s.insert(t, b);//插入(位置,串)33 t = s.find(a);34 }35 cout << ss << endl;36 }37 return 0;38 }

 

转载于:https://www.cnblogs.com/Surprisezang/p/8673444.html

你可能感兴趣的文章
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
第二章:webdriver 控制浏览器窗口大小
查看>>
【动态规划】流水作业调度问题与Johnson法则
查看>>
Python&Selenium&Unittest&BeautifuReport 自动化测试并生成HTML自动化测试报告
查看>>
活现被翻转生命
查看>>
POJ 1228
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
流操作的规律
查看>>
Python基础学习15--异常的分类与处理
查看>>
javascript运算符的优先级
查看>>
React + Redux 入门(一):抛开 React 学 Redux
查看>>
13位时间戳和时间格式化转换,工具类
查看>>
vue router-link子级返回父级页面
查看>>
C# 通知机制 IObserver<T> 和 IObservable<T>
查看>>
Code of Conduct by jsFoundation
查看>>