summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-05-31 02:06:42 +0200
committerAdmiral H. Curtiss <pikachu025@gmail.com>2023-02-28 00:56:33 +0100
commitbdb19085c47cdfeb2051020cb5564c6ecd9605c5 (patch)
treeda397a98ae410fea5d79472cf14d2c54f87babaa /Source/Core/Common
parent7586fc8134cee5c0d428b7ca2bf0e6d1cf103cf3 (diff)
Common: Add utility function for case-insensitive string comparison.
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/StringUtil.cpp8
-rw-r--r--Source/Core/Common/StringUtil.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp
index 1277a18f72..113d7b781a 100644
--- a/Source/Core/Common/StringUtil.cpp
+++ b/Source/Core/Common/StringUtil.cpp
@@ -704,4 +704,12 @@ void ToUpper(std::string* str)
{
std::transform(str->begin(), str->end(), str->begin(), [](char c) { return Common::ToUpper(c); });
}
+
+bool CaseInsensitiveEquals(std::string_view a, std::string_view b)
+{
+ if (a.size() != b.size())
+ return false;
+ return std::equal(a.begin(), a.end(), b.begin(),
+ [](char ca, char cb) { return Common::ToLower(ca) == Common::ToLower(cb); });
+}
} // namespace Common
diff --git a/Source/Core/Common/StringUtil.h b/Source/Core/Common/StringUtil.h
index 3ae97e5562..ed08e758dd 100644
--- a/Source/Core/Common/StringUtil.h
+++ b/Source/Core/Common/StringUtil.h
@@ -264,4 +264,5 @@ inline char ToUpper(char ch)
}
void ToLower(std::string* str);
void ToUpper(std::string* str);
+bool CaseInsensitiveEquals(std::string_view a, std::string_view b);
} // namespace Common