Apply multiple find and replace regex queries on multiple .txt files using a Perl code

前端 未结 2 1327
别跟我提以往
别跟我提以往 2020-12-12 08:09

I\'m trying to find a Perl on Windows code that enables me to apply multiple find and replace regex queries on multiple files in a specific directory. I\'m able to apply mul

2条回答
  •  萌比男神i
    2020-12-12 09:10

    Here is a basic perl program (perhaps name it myreplacers.pl) that can do that:

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    while(<>) {
      s/regex1/replace1/;
      s/regex2/replace2/;
      print;
    }
    

    Alter this with appropriate regular expressions and replacement texts and run it like perl myreplacers.pl file1 file2 etc.

提交回复
热议问题