How to make a PHP regular expression that select the value of a specific parameter of the link, for example :
https://anylink.com/?s=a&start=19&info=abc
The regular expression select the value of start parameter ( 19
in this case ) .
I tried with this pattern : [^start=]+$
but it only selects the the last parameter with =
sign