:relfileprefix: ../../../ [#boost-urls-authority_view-encoded_user] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/authority_view.adoc[pass:[authority_view]]::encoded_user Return the user == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/pct_string_view.adoc[pct_string_view] encoded_user() const noexcept; ---- == Description If present, this function returns a string representing the user (which may be empty). Otherwise it returns an empty string. The returned string may contain percent escapes. === Example [,cpp] ---- assert( url_view( "http://jane%2Ddoe:pass@example.com" ).encoded_user() == "jane%2Ddoe" ); ---- === Complexity Constant. === Exception Safety Throws nothing. === BNF [,cpp] ---- userinfo = user [ ":" [ password ] ] user = *( unreserved / pct-encoded / sub-delims ) password = *( unreserved / pct-encoded / sub-delims / ":" ) ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.1[3.2.1. User Information (rfc3986)] == See Also xref:boost/urls/authority_view/has_password.adoc[has_password] , xref:boost/urls/authority_view/has_userinfo.adoc[has_userinfo] , xref:boost/urls/authority_view/encoded_password.adoc[encoded_password] , xref:boost/urls/authority_view/encoded_userinfo.adoc[encoded_userinfo] , xref:boost/urls/authority_view/password.adoc[password] , xref:boost/urls/authority_view/user.adoc[user] , xref:boost/urls/authority_view/userinfo.adoc[userinfo] .