: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"] ---- 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. [,cpp] ---- query = *( pchar / "/" / "?" ) ---- === No-throw guarantee. Parse a string and return an encoded params view This function parses the string and returns the corresponding params object if the string is valid, otherwise returns an error. [,cpp] ---- query = *( pchar / "/" / "?" ) ---- === No-throw guarantee. === Return Value A valid view on success, otherwise an error code. === Parameters |=== | Name | Description | *s* | The string to parse | *s* | The string to parse |=== === See Also xref:boost/urls/params_encoded_view.adoc[params_encoded_view] . xref:boost/urls/params_encoded_view.adoc[params_encoded_view] .