将一个子字符串替换为Shell脚本中的另一个字符串

喜夏-厌秋 提交于 2020-08-18 15:14:26

问题:

I have "I love Suzi and Marry" and I want to change "Suzi" to "Sara". 我有“我爱Suzi和结婚”,我想将“ Suzi”更改为“ Sara”。

#!/bin/bash
firstString="I love Suzi and Marry"
secondString="Sara"
# do something...

The result must be like this: 结果必须是这样的:

firstString="I love Sara and Marry"

解决方案:

参考一: https://stackoom.com/question/tQki/将一个子字符串替换为Shell脚本中的另一个字符串
参考二: https://oldbug.net/q/tQki/Replace-one-substring-for-another-string-in-shell-script
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!