When you read in your first line, it has the form
1\n
with a trailing newline. So when you say:
$_ =~ s/$_/$_ 1.0/g;
you are saying, "If $_ can be found in the variable
$_ (which of course it can), substitute for the entire
value, that same value with " 1.0" on the end. Which results
in the string:
1\n 1.0
Which is just what you report.
Doing a substitution on the whole string is a bit odd
anyway. And you don't need the /g.
How about (staying with the level of verbose
clarity you are using):
foreach $txtfile (glob("*.TXT")) {
print $txtfile;
print "\n";
open FILE, "$txtfile";
open NEWFILE, ">$txtfile.tmp";
while (<FILE>){
chomp $_;
if ($. == 1){
$_ .= " 1.0"; # i.e. $_ = $_ . " 1.0";
}
print NEWFILE $_, "\n";
}
close FILE;
close NEWFILE;
}
Update: A more streamlined version might be:
foreach $txtfile (glob("*.TXT")) {
print $txtfile;
print "\n";
open FILE, "$txtfile";
open NEWFILE, ">$txtfile.tmp";
while (<FILE>){
$_ =~ s/\n/ 1.0\n/ if $. = 1;
print NEWFILE $_;
}
close FILE;
close NEWFILE;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.