[#boost-urls-grammar-vchars] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/grammar.adoc[grammar]::vchars :relfileprefix: ../../../ :mrdocs: The set of visible characters == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/vchars.hpp#L105[boost/url/grammar/vchars.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr /* implementation-defined */::xref:boost/urls/grammar/implementation_defined/vchars_t.adoc[vchars_t] vchars = {}; ---- == Description === Example Character sets are used with rules and the functions xref:boost/urls/grammar/find_if.adoc[find_if] and xref:boost/urls/grammar/find_if_not.adoc[find_if_not]. [,cpp] ---- system::result< core::string_view > rv = parse( "JohnDoe", token_rule( vchars ) ); ---- === BNF [,cpp] ---- VCHAR = 0x21-0x7E ; visible (printing) characters ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc5234#appendix-B.1[B.1. Core Rules (rfc5234)] == See Also xref:boost/urls/grammar/find_if.adoc[find_if], xref:boost/urls/grammar/find_if_not.adoc[find_if_not], xref:boost/urls/grammar/parse-02.adoc[parse], xref:boost/urls/grammar/token_rule.adoc[token_rule]. [.small]#Created with https://www.mrdocs.com[MrDocs]#