...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Return a valid percent-encoded string.
Defined in header <boost/url/pct_string_view.hpp>
friend result< pct_string_view > make_pct_string_view( string_view s);
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.
Linear in s.size()
.
Throws nothing.
Name |
Description |
---|---|
|
The string to validate. |
Convenience header <boost/url.hpp>