According to the spec for URL, can the scheme have an underscore? E.g., is web_view://example.com a valid URL?

link|improve this question

63% accept rate
feedback

1 Answer

up vote 2 down vote accepted

No.

A valid RFC 3986 URL must consist of "a letter and followed by any combination of letters, digits, plus ("+"), period ("."), or hyphen ("-")."

    scheme      = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.