in reply to Embed empty value using qw()
That doesn't leave much room for an empty value. But for another way, you could fill the array using a slice..split(' ', q/STRING/);
Still not pretty, but it's something..@array[0..4,6..9] = qw(0 1 2 3 4 6 7 8 9);
Rich
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Embed empty value using qw()
by BrentDax (Hermit) on Sep 03, 2001 at 09:52 UTC |