AppConfig loading undef values into ARGCOUNT_LIST
am 22.03.2007 19:54:36 von ksdoctorWhat 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