[#bsl-basic_string-0e-contains-0e] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0e.adoc[basic_string<wchar_t>]::contains :relfileprefix: ../../ :mrdocs: `contains` overloads == Synopses Declared in `<bslstl_string.h>` Return `true` if this view contains with the specified `character`, and `false` otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:bsl/basic_string-0e/contains-0c.adoc[contains](wchar_t character) const noexcept; ---- [.small]#xref:bsl/basic_string-0e/contains-0c.adoc[_» more..._]# Return `true` if this view contains with the specified `subview`, and `false` otherwise. See {Lexicographical Comparisons}. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:bsl/basic_string-0e/contains-06.adoc[contains](basic_string_view<wchar_t, char_traits<wchar_t>> subview) const noexcept; ---- [.small]#xref:bsl/basic_string-0e/contains-06.adoc[_» more..._]# Return `true` if this view contains with the specified `characterString`, and `false` otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:bsl/basic_string-0e/contains-00.adoc[contains](wchar_t const* characterString) const; ---- [.small]#xref:bsl/basic_string-0e/contains-00.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#