[#boost-urls-pct_string_view-2constructor-0d] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/pct_string_view.adoc[pct_string_view]::pct_string_view :relfileprefix: ../../../ :mrdocs: Constructor == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/pct_string_view.hpp#L230[boost/url/pct_string_view.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- pct_string_view(core::string_view s); ---- == Description The newly constructed string references the specified character buffer. Ownership is not transferred. === Postconditions [,cpp] ---- this->data() == s.data() && this->size() == s.size() ---- === Complexity Linear in `s.size()`. === Exception Safety Exceptions thrown on invalid input. == Exceptions |=== | Name | Thrown on | `system_error` | The string contains an invalid percent encoding. |=== == Parameters |=== | Name | Description | *s* | The string to construct from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#