当在一行中找到另一个字符串时,如何替换一个字符串?

当在一行中找到另一个字符串时,如何替换一个字符串?

当在 unix 文件的一行中找到字符串“ny”时,我想将字符串“xy”替换为另一个字符串“ab”。

示例文本:

If we have xy today we can go to ny.
If we have xy tomorrow we can go to ny tomorrow.
If we have mn now we can go to ny now.

输出文本应如下所示:-

If we have ab today we can go to ny.
If we have ab tomorrow we can go to ny tomorrow.
If we have mn now we can go to ny now.

答案1

sed可能是最简单的方法:

sed '/ny/s/xy/ab/g' file

它包含两个子命令:/ny/搜索模式并s/xy/ab/g进行实际替换。请注意,它将替换所有出现的xy;如果您只想替换每行中的第一个,只需删除 final g

答案2

答案在awk

awk '/ny/ {gsub(/xy/,"ab")}; {print}' test.txt

解释

  • /ny/ny:只有当有上线时才执行以下命令。
  • gsub(/xy/,"ab"): 仅在这些行上替换/xy/ab, 。
  • {print}:无论您在哪一行,都打印该行。

相关内容