Is there a way to extract all value for a specific query parameter from an URL?
For example, if we have a string like
?code1=AF&code1=AE&code1=GE&code3=FW
Can we search this string for all values associated with the parameter code1
?
So, in the given example, the desired output would be [AF, AE, GE]