I am pulling in values from an Excel spreadsheet and some of the cells are
blank, but the array is adding these to it's list of elements with a null
(maybe empty string) element.
Thanks,
Don
% set a(something) "Foo"
Foo
% set a() "Bar"
Bar
% parray a
a() = Bar
a(something) = Foo
% unset a()
% parray a
a(something) = Foo
i.e. just unset the unused elements.