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