**Describe the bug** Currently, `fullUrl` returns invalid URLs as valid ones. Same is the case with `Url`. We should improve the regex like here: https://github.com/asaskevich/govalidator/blob/master/patterns.go#L41 Examples: ``` https://www.googl_?e.com/testme https://www https://not%23 ``` **To Reproduce** Add the above invalid URLs to `TestIsFullURL` function, the tests will pass.
Describe the bug
Currently,
fullUrlreturns invalid URLs as valid ones. Same is the case withUrl. We should improve the regex like here:https://github.com/asaskevich/govalidator/blob/master/patterns.go#L41
Examples:
To Reproduce
Add the above invalid URLs to
TestIsFullURLfunction, the tests will pass.