Help for this page

Select Code to Download


  1. or download this
    while (<test>) {    
        $_ =~ <test>;
    ...
        s/(th)/TH/gi;
        print "$_\n";
    }
    
  2. or download this
    while (<test>) {    
        s/th/TH/gi;
        print;
    }