:relfileprefix: ../../../ [#boost-urls-segments_encoded_base-front] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/segments_encoded_base.adoc[pass:[segments_encoded_base]]::front Return the first segment == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/pct_string_view.adoc[pct_string_view] front() const noexcept; ---- == Description This function returns a string with the first segment of the path without any leading or trailing '/' separators. The returned string may contain percent escapes. === Preconditions [,cpp] ---- this->empty() == false ---- === Effects [,cpp] ---- return *begin(); ---- === Example [,cpp] ---- assert( url_view( "/path/to/file.txt" ).encoded_segments().front() == "path" ); ---- === Complexity Constant. === Exception Safety Throws nothing.