Perl搜索和替换

前端之家收集整理的这篇文章主要介绍了Perl搜索和替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用搜索和替换来更改文件内容.

我需要能够将’all to none’和/或’none to all’更改为无需每次手动执行数百行.

下面是一个示例文本文件,右侧是行号.我知道如何打开和关闭文件进行写入.

1 define_filter absolute_minimal_filter ——- all
2 define_filter atma_basic_filter ——– —–无
3 define_filter atma_communication_filter – 全部
4 define_filter atma_health_filter ————-无
5 define_filter atma_misc_filter ————— all
6 define_filter atma_performance_filter —- none
7 define_filter atma_supplemental_filter —- none

解决方法

使用精心挑选的字符串代替“temp”(在两个地方):
sed 's/all/temp/g;s/none/all/g; s/temp/none/g' input_file > output_file

或者没有临时字符串,如果“all”和“none”永远不会出现在同一行并始终结束该行:

sed 's/all$/none/;t;s/none$/all/' input_file > output_file
原文链接:https://www.f2er.com/Perl/172437.html

猜你在找的Perl相关文章