From catalog/rfc9110-http.abnf rule: Allow

Definition

Allow = *method

method = token

token = 1*tchar

tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA

    

Info

Rulename
Allow
Dependencies
ALPHA, DIGIT, tchar, token, method, Allow
Used Builtins
ALPHA, DIGIT

Alphabet

Translations

Railroad Diagram

Allow method

Swift Regular Expression

[!#-'*-+\--.0-9A-Z\^-z|~]*

POSIX Extended Regular Expression

[!#-'*-+\--.0-9A-Z\^-z|~]*