:relfileprefix: ../../ [#boost-urls-gen_delim_chars] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::gen_delim_chars The gen-delims character set === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- constexpr xref:boost/urls/grammar.adoc[grammar]::xref:boost/urls/grammar/lut_chars.adoc[lut_chars] const gen_delim_chars = ":/?#[]@"; ---- === Description === 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 > rv = grammar::parse( "Program%20Files", pct_encoded_rule( gen_delim_chars ) ); ---- [,cpp] ---- gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" ---- * link:https://datatracker.ietf.org/doc/html/rfc3986#section-2.2[2.2. Reserved Characters (rfc3986)] === 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-02.adoc[grammar::parse] , xref:boost/urls/pct_encoded_rule.adoc[pct_encoded_rule] .