AppConfig loading undef values into ARGCOUNT_LIST

AppConfig loading undef values into ARGCOUNT_LIST

am 22.03.2007 19:54:36 von ksdoctor

What is the syntax for loading empty (undef) or empty strings into an
AppConfig value set to ARGCOUNT_LIST ?

I am using AppConfig 1.56

Here is a code snippet:
use AppConfig;
my $config = AppConfig->new();

$config->define("Thing=s@");
$config->file("config.txt");

print join("\n", @{$config->Thing()}) . "\n";

--- config.txt---

Thing = 'one'
Thing = ''
Thing = 'three'
Thing =
Thing = undef

---

The result is only
STDERR : "Thing expects an argument at ./config.txt line 2
STDOUT :
one

undef

I would like AppConfig to add an undef or empty string to the list
rather than ignore it.

thanks,
-K S D

Re: AppConfig loading undef values into ARGCOUNT_LIST

am 03.04.2007 19:15:07 von Ted Zlatanov

On 22 Mar 2007 11:54:36 -0700 ksdoctor@fastmail.us wrote:

k> What is the syntax for loading empty (undef) or empty strings into an
k> AppConfig value set to ARGCOUNT_LIST ?
....
k> I would like AppConfig to add an undef or empty string to the list
k> rather than ignore it.

I haven't found a way to do this either. I just clear the entry
manually. A better way may be to define a "VAR IS NULL" line, which
would set VAR to undef. But I don't know who's maintaining AppConfig
these days; I asked some questions a year ago and never heard back.

Ted