Subject: | List as well as string |
Could you please add the option give a list as an argument to the
constructor, e.g.
my $t = xsv_slurp(
shape => 'aoh',
text_csv => {sep_char => '!' },
list => [
'h1!h2!h3',
'a1!a2!a3,
'b1!b2!b3
]
);
foreach (@{$t}) {
print $_->{h2};
print "\n";
}
Expected output would be:
a2
b3