[#boost-urls-url-remove_origin] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/url.adoc[url]::remove_origin :relfileprefix: ../../../ :mrdocs: Remove the origin component == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/url.hpp#L489[boost/url/url.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/url.adoc[url]& remove_origin(); ---- == Description This function removes the origin, which consists of the scheme and authority. === Example [,cpp] ---- assert( url( "http://www.example.com/index.htm" ).remove_origin().buffer() == "/index.htm" ); ---- === Postconditions [,cpp] ---- this->scheme_id() == scheme::none && this->has_authority() == false ---- === Complexity Linear in `this‐>size()`. === Exception Safety Throws nothing. [.small]#Created with https://www.mrdocs.com[MrDocs]#