I'm getting the following url string path for an example:
the following string url format /version/mydownload?a=abc&b=bbb&c=ccc
My question, how would validate? would you split /
and &
and then loop or is there a better way to validate?
my url string is not included http
or www
but it's part of the url string as shown above, would you split the string and check to see if this is in a right format?