How can I extract a param value using a regex, like the mver param from this string:
"/maze/action.xml?mver=66381&cid=474&melu=0&osName=Windows%208&dbv=38&ucnt=19"
I want to extract the mver param using
mver\=(.*?)\&
How can I make it capture it even if it's the last param (no trailing ampersand)
Thank you