in reply to parse a query string
If there are (?), then what you need to do is parse the thing from left to right, collecting parts as you go, instead of trying to parse it all at once. A recursive algorithm would be good, or you could just go use existing parser-creators, like Parse::RecDescent or Parse::Yapp.
C.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: parse a query string
by ctaustin (Sexton) on Jul 06, 2005 at 13:00 UTC |