Skip Menu |

This queue is for tickets about the Text-xSV-Slurp CPAN distribution.

Report information
The Basics
Id: 69515
Status: new
Priority: 0/
Queue: Text-xSV-Slurp

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



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