Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
params_encoded_view::parse_query

Parse a string and return an encoded params view.

Synopsis

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

friend result< params_encoded_view >
parse_query(
    string_view s);
Description

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

BNF
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

params_encoded_view.

Convenience header <boost/url.hpp>


PrevUpHomeNext