remove_userinfo

Remove the userinfo

Synopsis

static_url& remove_userinfo() noexcept;

Declared in file <boost/url/static_url.hpp> at line 361

Description

This function removes the userinfo if present, without removing any authority.

Example

assert( url( "http://user@example.com" ).remove_userinfo().has_userinfo() == false );

Postconditions

this->has_userinfo() == false && this->encoded_userinfo().empty == true

Complexity

Linear in `this->size()`.

Exception Safety

Throws nothing.

BNF

userinfo = [ [ user ] [ ':' password ] ] user = *( unreserved / pct-encoded / sub-delims ) password = *( unreserved / pct-encoded / sub-delims / ":" )

Specification

  • 3.2.1. User Information (rfc3986)