perldoc CGI

Or look at the code for that module...

http://danconia.org

Matt Simonsen wrote:
I need to get all the words in a query (q=___) out of a (URL, I think)
encoded string.
Example line and my current plan:

$queryString =
'pp=20&q=Finance/Banking/Insurance&qField=All&qMatch=any&qSort=smart&view=1'

my %querys = $queryString =~ /(\S+)=(\S+)&?/g ;

#Here I could use a tip on how to split counting the encoding
@words = split ($querys{q}) ;
I have to do this for millions of lines per month so any tips to help me
optimize this would be appreciated.

Thanks
Matt





--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to