in reply to Re^2: missing character when reading input file
in thread missing character when reading input file
Still not a lot of info to do | go on, but let me suggest you have "invisible" characters lurking in your input:
Some kind of data dump (Data::Dumper, Data::Dump) might be informative. (Data::Dumper is core and so should already be installed.)c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le "my $seq = qq{what is wrong with this\x0dline}; print $seq; dd $seq; " line is wrong with this "what is wrong with this\rline"
Give a man a fish: <%-{-{-{-<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: missing character when reading input file
by Eily (Monsignor) on Sep 11, 2018 at 16:19 UTC |