:relfileprefix: ../../../ [#boost-urls-grammar-alpha_chars] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/grammar.adoc[pass:[grammar]]::alpha_chars The set of all letters === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- constexpr pass:q[_implementation-defined_] alpha_chars = alpha_chars{}; ---- === Description === 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( alpha_chars ) ); ---- [,cpp] ---- ALPHA = %x41-5A / %x61-7A ; A-Z / a-z ---- * 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] .