http://qs321.pair.com?node_id=763206

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Enjoying playing with SQL::Abstract to generate SQL from values in a database table. This is working really well so far in my experiments. I've a little routine which determines how to call use SQL::Abstract's ‘where’ clauses correctly depending on what I need.

My problem is that one field I have to deal with contains key value pairs which I need to split up and pass to this routine. Their form is "&keyname=value&keyname2=value2". How can I sensibly split these up?

Thanks