From catalog/rfc9110-http.abnf rule: content-coding

Definition

content-coding = token

token = 1*tchar

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

    

Info

Rulename
content-coding
Dependencies
ALPHA, DIGIT, tchar, token, content-coding
Used Builtins
ALPHA, DIGIT

Alphabet

Translations

Railroad Diagram

content-coding token

ECMAScript/JavaScript Regular Expression Literal

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

Swift Regular Expression

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

POSIX Extended Regular Expression

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