in reply to Re^2: Moving Files
in thread Moving Files

You might do print length($primer) to see if any invisible chars are in that string.

UPDATE: Or use something like this to check for unusual ingredients:  if (not $primer=~/^[A-Z0-9-]+$/) print "AAAARGH\n";

Replies are listed 'Best First'.
Re^4: Moving Files
by rottmanja (Initiate) on Aug 07, 2008 at 21:44 UTC
    Ok, I think I have it figured out. Somewhere with in my $primer there is a char that should be there. Just have to find out what it is and remove it.