[#boost-urls-sub_delim_chars] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::sub_delim_chars :relfileprefix: ../../ :mrdocs: The sub‐delims character set == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/rfc/sub_delim_chars.hpp#L45[boost/url/rfc/sub_delim_chars.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:boost/urls/grammar/lut_chars.adoc[grammar::lut_chars] sub_delim_chars = "!$&()*+,;=\x27"; ---- == Description == Example Character sets are used with rules and the functions xref:boost/urls/grammar/find_if.adoc[`grammar::find_if`] and xref:boost/urls/grammar/find_if_not.adoc[`grammar::find_if_not`]. [,cpp] ---- system::result< decode_view > = grammar::parse( "Program%20Files", pct_encoded_rule( sub_delim_chars ) ); ---- == BNF [,cpp] ---- sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" ---- == Specification * https://datatracker.ietf.org/doc/html/rfc3986#section-2.2[] == See Also xref:boost/urls/grammar/find_if.adoc[`grammar::find_if`], xref:boost/urls/grammar/find_if_not.adoc[`grammar::find_if_not`], xref:boost/urls/grammar/parse-09.adoc[`grammar::parse`], xref:boost/urls/pct_encoded_rule.adoc[`pct_encoded_rule`]. [.small]#Created with https://www.mrdocs.com[MrDocs]#