Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Replacing a list with one variable

by hdb (Monsignor)
on Nov 21, 2013 at 10:14 UTC ( [id://1063707]=note: print w/replies, xml ) Need Help??


in reply to Replacing a list with one variable

It seems that the IDs parameter requires a reference to an array so you need to split your string $bookIDList into an array, the brackets will then turn that into a reference:

my $bookIDList = "abc,ghj,zxc,bnm,qwe,rty,iop,sdf,ert"; my $param = { IDs => [ split /,/, $bookIDList ], sort => "AUTHOR", maxResults => 100 };

or you build a list in the first place and feed a reference to that list:

my @bookIDList = ( "abc", "ghj", "zxc", "bnm", "qwe", "rty", "iop", "s +df", "ert" ); my $param = { IDs => \@bookIDList, sort => "AUTHOR", maxResults => 100 };

Replies are listed 'Best First'.
Re^2: Replacing a list with one variable
by Anonymous Monk on Nov 21, 2013 at 10:25 UTC

    Brilliant, that worked.
    Thank you

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1063707]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-18 05:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found