:relfileprefix: ../../ [#boost-urls-make_pct_string_view] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::make_pct_string_view Return a valid percent-encoded string == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/system.adoc[system]::result make_pct_string_view(core::string_view s) noexcept; ---- == Description If `s` is a valid percent-encoded string, the function returns the buffer as a valid view which may be used to perform decoding or measurements. Otherwise the result contains an error code. Upon success, the returned view references the original character buffer; Ownership is not transferred. === Complexity Linear in `s.size()`. === Exception Safety Throws nothing. == Parameters |=== | Name | Description | *s* | The string to validate. |===