2014-11-08 置換 Perl 置換はよくやる作業だと思います。 事務処理でも、研究でも、ITでも。Perlだと「s/置換前/置換後/」で変換できます。 ファイルの読み込み 置換 置換後のファイル出力 をやれば、複数ファイルでも、自動で置換できるはずです。 use strict; use warnings; my $str = "I am Ken.\n"; print $str; $str =~ s/I am/You are/; print $str;