编写一个两数实现从源字符串中查找目标字符串,并进行替换。如输入源字符串“Welovemath!” 查找目标字符串“math”,并将其替换为字符串“CProgram”,在主两数中输出替换后的字符串“We lloveCProgram!”
时间: 2023-08-21 15:02:34 浏览: 75
字符串的查找替换 汇编实现
4星 · 用户满意度95%
以下是 Python 代码实现:
```python
source_str = "Welovemath!"
target_str = "math"
replace_str = "CProgram"
if target_str in source_str:
new_str = source_str.replace(target_str, replace_str)
print(new_str)
else:
print("Target string not found in source string.")
```
输出结果为:
```
We loveCProgram!
```
阅读全文