Perl:循环遍历文件并替换
我只是想读入日志文件,进行搜索和替换,然后将更改写入同一日志文件。
在 Perl 中执行此操作的最佳实践方法是什么?
I simply wanna read in a logfile, do a search and replace, and then write out the changes to that same logfile.
What's the best practice way of doing this in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通常为此编写一个单行代码:
请参阅 这里
I normally code up a one liner for this:
See Here
这通常通过一行代码完成:
注意
-i.bak
部分 - 这将创建一个扩展名为.bak
的备份文件。 如果你想在没有网络的情况下玩,你可以这样做来覆盖现有文件而不进行备份:This is often done with a one-liner:
Note the
-i.bak
portion -- this creates a backup file with the extension.bak
. If you want to play without a net you can do this to overwrite the existing file without a backup:或者你可以使用 sed (我知道......你问过 perl):
or you can use
sed
(I know... you asked about perl):