I need to validate URL with URI::regexp but some URLs have no scheme.
I tried using,
URI::regexp(["http", "http])
URI::regexp(%w(http https tel)
but they cannot validate empty scheme such as "www.google.com" "google.com".
How can I include/validate such URLs?