AppConfig loading undef values into ARGCOUNT_LIST

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 [at] ");
$config->file("config.txt");

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

--- config.txt---

Thing = 'one'
Thing = ''
Thing = 'three'
Thing = <undef>
Thing = undef

---

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

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

thanks,
-K S D
ksdoctor [ Do, 22 März 2007 19:54 ] [ ID #1665852 ]

Re: AppConfig loading undef values into ARGCOUNT_LIST

On 22 Mar 2007 11:54:36 -0700 ksdoctor [at] 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
Ted Zlatanov [ Di, 03 April 2007 19:15 ] [ ID #1677877 ]
Perl » comp.lang.perl.modules » AppConfig loading undef values into ARGCOUNT_LIST

Vorheriges Thema: Automation using setupsup
Nächstes Thema: perl OOP