Probably a minor one for the pros...
I want to detect a string of query parameters like:
var1=val1&var2=val2&...
I tried:
((.*)?(#[\w\-]+)?$&*)*
which is fine except it also matches
var1=val1&
which I don't want.
EDIT:
Tried also this:
(.*)=(.*)&*
is it a good solution?