[#BloombergLP-bdlb-String-areEqualCaseless-010] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/String.adoc[String]::areEqualCaseless :relfileprefix: ../../../ :mrdocs: `areEqualCaseless` overloads == Synopses Declared in `<bdlb_string.h>` Compare `lhsString` and `rhsString` for case‐insensitive equality. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-05.adoc[areEqualCaseless]( xref:bsl/string.adoc[bsl::string] const& lhsString, xref:bsl/string.adoc[bsl::string] const& rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-05.adoc[_» more..._]# Compare for equality the specified `lhsString` and `rhsString` _as if_ the strings were converted to lower case before the equality comparison. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-04.adoc[areEqualCaseless]( xref:bsl/string.adoc[bsl::string] const& lhsString, char const* rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-04.adoc[_» more..._]# Compare `lhsString` and `rhsString` for case‐insensitive equality. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-014.adoc[areEqualCaseless]( char const* lhsString, xref:bsl/string.adoc[bsl::string] const& rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-014.adoc[_» more..._]# Compare for equality the specified `lhsString` and `rhsString` having the optionally specified `lhsLength` and `rhsLength`, respectively, _as if_ the strings were converted to lower case before the equality comparison. Return `true` if `lhsString` is equal to `rhsString`, and `false` otherwise. The behavior is undefined unless `0 <= lhsLength` and `0 <= rhsLength` (if specified), and `lhsString.size() <= INT_MAX` and `rhsString.size() <= INT_MAX` (if applicable). See {`bdlb_stringviewutil`} for an identically named method having the same semantics taking `bsl::string_view`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-09d.adoc[areEqualCaseless]( char const* lhsString, char const* rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-09d.adoc[_» more..._]# Compare `lhsString` and `rhsString` for case‐insensitive equality. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-0c.adoc[areEqualCaseless]( xref:bsl/string.adoc[bsl::string] const& lhsString, char const* rhsString, int rhsLength); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-0c.adoc[_» more..._]# Same as the preceding overload, comparing against a `bsl::string`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-086.adoc[areEqualCaseless]( char const* lhsString, int lhsLength, xref:bsl/string.adoc[bsl::string] const& rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-086.adoc[_» more..._]# Compare `lhsString` and `rhsString` for case‐insensitive equality. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-0d.adoc[areEqualCaseless]( char const* lhsString, int lhsLength, char const* rhsString); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-0d.adoc[_» more..._]# Compare for equality the specified `lhsString` and `rhsString` having the optionally specified `lhsLength` and `rhsLength`, respectively, _as if_ the strings were converted to lower case before the equality comparison. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-09b.adoc[areEqualCaseless]( char const* lhsString, char const* rhsString, int rhsLength); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-09b.adoc[_» more..._]# Same as the preceding overload, with an explicit `rhsLength`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool xref:BloombergLP/bdlb/String/areEqualCaseless-084.adoc[areEqualCaseless]( char const* lhsString, int lhsLength, char const* rhsString, int rhsLength); ---- [.small]#xref:BloombergLP/bdlb/String/areEqualCaseless-084.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#