What you are probably experiencing is a line ending from a windows file causing issues. For example, a string such as "foo bar\n", would actually be "foo bar\r\n". When using chomp in Ubuntu, you would be removing whatever is contained in the variable $/, which would be "\n". So, what remains is "foo bar\r".
This is a subtle, but very common error. For example, if you print "foo bar\r" and add a newline, you would not notice the error:
my $var = "foo bar\r\n";
chomp $var;
print "$var\n"; # remove and put back newline
But when you concatenate the string with another string, you overwrite the first string, because \r moves the output handle to the beginning of the string. For example:
print "$var : WRONG\n";
Would effectively be "foo bar\r : WRONG\n", but the text after \r would cause the following text to wrap back on top of the first part:
foo bar\r # \r resets position
: WRONG\n # second line prints and overwrites
This is more obvious when the first line is longer than the second. For example, try the following:
perl -we 'print "foo bar\rbaz\n"'
And you will get the output:
baz bar
The solution is to remove the bad line endings. You can do this with the dos2unix command, or directly in perl with:
$line =~ s/[\r\n]+$//;
Also, be aware that your other code is somewhat horrific. What do you for example think that $13 contains? That'd be the string captured by the 13th parenthesis in your previous regex. I'm fairly sure that value will always be undefined, because you do not have 13 parentheses.
You declare two sets of $id and $name. One outside the loop and one at the top. This is very poor practice, IMO. Only declare variables within the scope they need, and never just bunch all your declarations at the top of your script, unless you explicitly want them to be global to the file.
Why use $line and $line2 when they have the same value? Just use $line.
And seriously, what is up with this:
if($line !~ /^(((\X|[^\W_ ])+)(.docx)(\n|\r))/g){
That looks like an attempt to obfuscate, no offence. Three nested negations and a bunch of unnecessary parentheses?
First off, since it is an if-else, just swap it around and reverse the regex. Second, [^\W_] a double negation is rather confusing. Why not just use [A-Za-z0-9]? You can split this up to make it easier to parse:
if ($line =~ /^(.+)(\.docx)\s*$/) {
my $pre = $1;
my $ext = $2;
[^\W_]? So, you are trying to match characters that are not[A-Za-z0-9_], and not underscore_? That's a lot of negations, are you sure you are getting them right? I'm finding it rather confusing myself. – TLP Mar 17 '12 at 16:17\wis not equal to[A-Za-z0-9_]? – TLP Mar 17 '12 at 19:54\wis equal to[\p{Alphabetic}\p{Mark}\p{Decimal_Number}\p{Connector_Punctuation}]. This is well-known. It covers 102,724 code points as of Unicode v6.0, which is four orders of magnitude more of them than the scant 63 that you mention. – tchrist Mar 17 '12 at 21:14