boost::urls::url::remove_userinfo
Remove the userinfo
Synopsis
Declared in <boost/url/url.hpp>
url&
remove_userinfo() noexcept;
Description
This function removes the userinfo if present, without removing any authority.
assert( url( "http://user@example.com" ).remove_userinfo().has_userinfo() == false );
this->has_userinfo() == false && this->encoded_userinfo().empty == true
See Also
Created with MrDocs