in reply to Why are lines being skipped in output?
To:while (<test>) { $_ =~ <test>; chomp; s/(th)/TH/gi; print "$_\n"; }
and it should work.while (<test>) { s/th/TH/gi; print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Why are lines being skipped in output?
by negzero7 (Sexton) on Mar 18, 2008 at 13:50 UTC |