Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
segments_encoded_view::parse_path

Parse a string and return an encoded segment view.

Synopsis

Defined in header <boost/url/segments_encoded_view.hpp>

friend result< segments_encoded_view >
parse_path(
    string_view s);
Description

This function parses the string and returns the corresponding path object if the string is valid, otherwise returns an error.

BNF
path          = [ "/" ] segment *( "/" segment )
Exception Safety

No-throw guarantee.

Return Value

A valid view on success, otherwise an error code.

Parameters

Name

Description

s

The string to parse

Specification
See Also

segments_encoded_view.

Convenience header <boost/url.hpp>


PrevUpHomeNext