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