[#boost-urls-url_base-encoded_segments-0e5] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/url_base.adoc[url_base]::encoded_segments :relfileprefix: ../../../ :mrdocs: Return the path as a container of segments == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/url_base.hpp#L1950[boost/url/url_base.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_encoded_view.adoc[segments_encoded_view] encoded_segments() const noexcept; ---- == Description This function returns a bidirectional view of strings over the path. The returned view references the same underlying character buffer; ownership is not transferred. Strings returned when iterating the range may contain percent escapes. === Example [,cpp] ---- segments_encoded_view sv = url_view( "/path/to/file.txt" ).encoded_segments(); ---- === Complexity Constant. === Exception Safety Throws nothing. === BNF [,cpp] ---- path = path-abempty ; begins with "/" or is empty / path-absolute ; begins with "/" but not "//" / path-noscheme ; begins with a non-colon segment / path-rootless ; begins with a segment / path-empty ; zero characters path-abempty = *( "/" segment ) path-absolute = "/" [ segment-nz *( "/" segment ) ] path-noscheme = segment-nz-nc *( "/" segment ) path-rootless = segment-nz *( "/" segment ) path-empty = 0 ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.3[3.3. Path (rfc3986)] Return the path as a container of segments This function returns a bidirectional view of strings over the path. The returned view references the same underlying character buffer; ownership is not transferred. Strings returned when iterating the range may contain percent escapes. === Example [,cpp] ---- segments_encoded_view sv = url_view( "/path/to/file.txt" ).encoded_segments(); ---- === Complexity Constant. === Exception Safety Throws nothing. === BNF [,cpp] ---- path = path-abempty ; begins with "/" or is empty / path-absolute ; begins with "/" but not "//" / path-noscheme ; begins with a non-colon segment / path-rootless ; begins with a segment / path-empty ; zero characters path-abempty = *( "/" segment ) path-absolute = "/" [ segment-nz *( "/" segment ) ] path-noscheme = segment-nz-nc *( "/" segment ) path-rootless = segment-nz *( "/" segment ) path-empty = 0 ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.3[3.3. Path (rfc3986)] == See Also xref:boost/urls/url_view_base/is_path_absolute.adoc[is_path_absolute], xref:boost/urls/url_view_base/encoded_path.adoc[encoded_path], xref:boost/urls/url_view_base/path.adoc[path], xref:boost/urls/url_view_base/segments.adoc[segments], xref:boost/urls/segments_encoded_view.adoc[segments_encoded_view]. xref:boost/urls/url_view_base/is_path_absolute.adoc[is_path_absolute], xref:boost/urls/url_view_base/encoded_path.adoc[encoded_path], xref:boost/urls/url_view_base/path.adoc[path], xref:boost/urls/url_view_base/segments.adoc[segments], xref:boost/urls/segments_encoded_view.adoc[segments_encoded_view]. [.small]#Created with https://www.mrdocs.com[MrDocs]#