@
Ferdari Please note that the order of the get-parameters in this string must be exact like this order..
ok
not ok
Otherwise you could do something like that.
Use the part of url beginning after the questionmark in a new string
->
q=90&zc=2&w=100&src=picture.jpg
Split the string at "&"
You get this resultS
q=90
zc=2
w=100
src=picture.jpg
Split each part on =
q=90
q
90
zc=2
zc
2
w=100
w
100
src=picture.jpg
src
picture.jpg
In this way the order of the get-parameters does not matter. you just need to check if the first result in splitting the parts is "src". The second result must be the filename
You can build a new url now...