[#absl-StrContainsIgnoreCase-03] = xref:absl.adoc[absl]::StrContainsIgnoreCase :relfileprefix: ../ :mrdocs: Returns whether a given ASCII string `haystack` contains the ASCII character `needle`, ignoring case in the comparison. == Synopsis Declared in `<absl/strings/match.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool StrContainsIgnoreCase( std::string_view haystack, char needle) noexcept; ---- == Return Value `true` if `needle` is found in `haystack`, `false` otherwise. == Parameters [cols="1,4"] |=== | Name| Description | *haystack* | The string to search within. | *needle* | The character to search for. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#