From an url, I want to get all query parameter values that matches a specific parameter.
For instance, if we have a string such as
?code1=AF&code1=AE&code1=GE&code3=FW
Is it possible to query the string for all values relating to parameter code1?
For example, the above would return a list such as [AF,AE,FW]