:relfileprefix: ../../../ [#boost-urls-decode_view-ends_with] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/decode_view.adoc[pass:[decode_view]]::ends_with Checks if the string ends with the given prefix === Synopsis [source,cpp,subs="verbatim,macros,-callouts"] ---- bool xref:boost/urls/decode_view/ends_with-04.adoc[pass:[ends_with]](core::string_view s) const noexcept; ---- [source,cpp,subs="verbatim,macros,-callouts"] ---- bool xref:boost/urls/decode_view/ends_with-0d.adoc[pass:[ends_with]](char ch) const noexcept; ---- === Description [,cpp] ---- assert( decode_view( "Program%20Files" ).ends_with("Files") ); ---- === Linear. === Throws nothing.