in reply to Escapes and comments in Config::General

I can't reproduce your stated result; I don't see a backslash in the string. I am using Config::General version 2.50 which I just downloaded from CPAN:
$ cat rcfile foo 16&\#x2032; roll $ $ cat 894796.pl #!/usr/bin/env perl use warnings; use strict; use Config::General; my $conf = Config::General->new('rcfile'); my %config = $conf->getall(); print $config{foo}, "\n"; $ ./894796.pl 16′ roll $

Replies are listed 'Best First'.
Re^2: Escapes and comments in Config::General
by John M. Dlugosz (Monsignor) on Mar 22, 2011 at 14:23 UTC
    OK, I updated to 2.5 (from 2.48) and it works fine!

    I see something about "missing a #" in some other bug fix, in the change log.

    Thanks for mentioning the latest version detail in your post.

    —John