Returns whether given ASCII strings piece1 and piece2 are equal, ignoring case in the comparison.
Declared in <absl/strings/match.h>
bool
EqualsIgnoreCase(
std::string_view piece1,
std::string_view piece2) noexcept;
true if the strings are equal ignoring case, false otherwise.
| Name | Description |
|---|---|
| piece1 | The first string to compare. |
| piece2 | The second string to compare. |