[#bsl-basic_string-0faf-contains-01] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0faf.adoc[basic_string]::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-0faf/contains-0f.adoc[contains](CHAR_TYPE character) const noexcept; ---- [.small]#xref:bsl/basic_string-0faf/contains-0f.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-0faf/contains-005.adoc[contains](basic_string_view<CHAR_TYPE, CHAR_TRAITS> subview) const noexcept; ---- [.small]#xref:bsl/basic_string-0faf/contains-005.adoc[_» more..._]# Return whether this string contains `characterString`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:bsl/basic_string-0faf/contains-007.adoc[contains](CHAR_TYPE const* characterString) const; ---- [.small]#xref:bsl/basic_string-0faf/contains-007.adoc[_» more..._]# == Return Value * `true` if the sequence occurs in this string, otherwise `false` * `true` if `characterString` occurs in this string == Parameters [cols="1,4"] |=== | Name| Description | *character* | character value | *subview* | string view to search for | *characterString* | null‐terminated substring to search for |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#