in reply to Pattern Mismatch
To see what data you have use either Data::Dumper or YAML. Both will work well in this case.
oruse Data::Dumper; print Dumper(\@inde);
YAML I find easier to read but Data::Dumper's output is well formatted perl code. Experiment and see which you find most useful for your needs. It is much easier to work with complex data structures if you know what they are.use YAML; print Dump(\@inde);
|
|---|