Mega Code Archive

 
Categories / Perl / Language Basics
 

Using $_ variable with while statement

while(<>) {     print; } while (<>) {    for (split) {        s/m/y/g;        print;    } } while ($_ = <>) {    for $_ (split / /, $_) {        $_ =~ s/m/y/g;        print $_;    } }