From catalog/rfc9110-http.abnf rule: product
Definition
product = token ["/" product-version]
product-version = token
token = 1*tchar
tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA
Info
- Rulename
- product
- Dependencies
- ALPHA, DIGIT, tchar, token, product-version, product
- Used Builtins
- ALPHA, DIGIT
Alphabet
! #…' *…+ -…. 0…9 A…Z ^…z | ~/
Translations
Railroad Diagram
Swift Regular Expression
[!#-'*-+\--.0-9A-Z\^-z|~][!#-'*-+\--.0-9A-Z\^-z|~]*(|/[!#-'*-+\--.0-9A-Z\^-z|~][!#-'*-+\--.0-9A-Z\^-z|~]*)
POSIX Extended Regular Expression
[!#-'*-+\--.0-9A-Z\^-z|~][!#-'*-+\--.0-9A-Z\^-z|~]*(|/[!#-'*-+\--.0-9A-Z\^-z|~][!#-'*-+\--.0-9A-Z\^-z|~]*)