:relfileprefix: ../../ [#boost-urls-parse_query] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::parse_query Parse a string and return an encoded params view == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/system.adoc[system]::result parse_query(core::string_view s) noexcept; ---- == Description This function parses the string and returns the corresponding params object if the string is valid, otherwise returns an error. === BNF [,cpp] ---- ---- === Exception Safety No-throw guarantee. === Specification == Return Value A valid view on success, otherwise an error code. == Parameters |=== | Name | Description | *s* | The string to parse |=== == See Also xref:boost/urls/params_encoded_view.adoc[params_encoded_view] .