:relfileprefix: ../../../ [#E5D6B61E6C99464CCA8DEDEE649C90D19AFF1812] = Function url_base::encoded_segments pass:v,q[Return the path as a container of segments] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/segments_encoded_view.adoc[segments_encoded_view] encoded_segments() const noexcept; ---- == Description pass:v,q[This function returns a bidirectional] pass:v,q[view of strings over the path.] pass:v,q[The returned view references the same] pass:v,q[underlying character buffer; ownership] pass:v,q[is not transferred.] pass:v,q[Strings returned when iterating the] pass:v,q[range may contain percent escapes.] === Example [,cpp] ---- segments_encoded_view sv = url_view( "/path/to/file.txt" ).encoded_segments(); ---- === Complexity pass:v,q[Constant.] === Exception Safety pass:v,q[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 Value * `segments_encoded_view`