-
Notifications
You must be signed in to change notification settings - Fork 555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validation failing for IsURL() #445
Comments
another example is http://invalid-link |
@orangemail
which infact is not a valid URL as the domain name is not specified(.com/.eu/.in should be in the URL)
|
#451 - Fix: Checking of a Valid URL or not |
Hello guys! |
I tried this sample string as input for IsURL().
i.e
http://com/networks/
API is returning this as valid URL. Can you please correct it.
I saw this Regex in RFC 2396. Somehow if we can use if inside this API ...it will be more effective.
^(([^:/?#]+):)?(//([^/?#]))?([^?#])(?([^#]))?(#(.))?
The text was updated successfully, but these errors were encountered: