From: Jean-Philippe Theberge
Subject: string to list
Date: 
Message-ID: <32996538.5B46@mlink.net>
I would like convert a string into a list like this:

this:   "name1=value1&name2=value2"
become: (("name1" "value1")("name2" "value2"))

can somebody give me some hints about how to do that?
From: voisin
Subject: Re: string to list
Date: 
Message-ID: <329B3255.6BB5@ircam.fr>
try with de fonction with-input-from-string or something like that, 
and then read; with the :index :start and :end you can make your list.