:relfileprefix: ../../../ [#boost-urls-decode_view-starts_with-01] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/decode_view.adoc[pass:[decode_view]]::starts_with Checks if the string begins with the given prefix == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- bool starts_with(core::string_view s) const noexcept; ---- == Description === Example [,cpp] ---- assert( decode_view( "Program%20Files" ).starts_with("Program") ); ---- === Complexity Linear. === Exception Safety Throws nothing.