in reply to Re^2: language Decoding problem..?
in thread language Decoding problem..?

I suggest just to be sure you walk along each character to find the difference. Something like this:
# there are probably better ways of doing a string diff... my ($s1, $s2) = ($title_checking, $titlenamefromindex); for (my $i = 0; i < length( $s1); $i++) { print "Different at $i\n" if (substr( $s1, $i, 1) ne substr( $s2, $ +i, 1); }
(You may need to make minor fixes to above)
If you spot any bugs in my solutions, it's because I've deliberately left them in as an exercise for the reader! :-)