I need a Regex validating Url:
This should be valid
http://www.google.com
https://www.google.com
but not this:
google.com
www.google.com
I know this can be done with Uri.IsWellFormedUriString
for example but I need a regex. Found a couple of similar topics but does not fit my case.Thanks!