Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url_base::encoded_segments (1 of 2 overloads)

(Inherited from url_base)

Return the path as a container of segments.

Synopsis
segments_encoded_ref
encoded_segments();
Description

This function returns a bidirectional view of segments 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. The container is modifiable; changes to the container are reflected in the underlying URL.

Example
[link url.ref.boost__urls__url_base.url `url`] u( "http://example.com/path/to/file.txt" );

[link url.ref.boost__urls__url_base.segments_encoded_ref `segments_encoded_ref`] sv = u.encoded_segments();
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
[link url.ref.boost__urls__static_url_base.path `path`]          = [link url.ref.boost__urls__static_url_base.path `path`]-abempty    ; begins with "/" or is [link url.ref.boost__urls__static_url_base.empty `empty`]
              / [link url.ref.boost__urls__static_url_base.path `path`]-absolute   ; begins with "/" but not "//"
              / [link url.ref.boost__urls__static_url_base.path `path`]-noscheme   ; begins with a non-colon segment
              / [link url.ref.boost__urls__static_url_base.path `path`]-rootless   ; begins with a segment
              / [link url.ref.boost__urls__static_url_base.path `path`]-[link url.ref.boost__urls__static_url_base.empty `empty`]      ; zero characters

[link url.ref.boost__urls__static_url_base.path `path`]-abempty  = *( "/" segment )
[link url.ref.boost__urls__static_url_base.path `path`]-absolute = "/" [ segment-nz *( "/" segment ) ]
[link url.ref.boost__urls__static_url_base.path `path`]-noscheme = segment-nz-nc *( "/" segment )
[link url.ref.boost__urls__static_url_base.path `path`]-rootless = segment-nz *( "/" segment )
[link url.ref.boost__urls__static_url_base.path `path`]-[link url.ref.boost__urls__static_url_base.empty `empty`]    = 0<pchar>
Specification
See Also

encoded_segments, set_encoded_path, set_path, set_path_absolute.


PrevUpHomeNext