From e66e82b9a8c0513bac35fc87d1e64534232c80cd Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 2 Feb 2014 17:04:49 +0100 Subject: [PATCH] str_match: keyspec matches are ignorecase --- src/str_match.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/str_match.cpp b/src/str_match.cpp index dbfacbd..8208248 100644 --- a/src/str_match.cpp +++ b/src/str_match.cpp @@ -18,7 +18,9 @@ #include "str_match.h" -#include //for tolower() +#include +#include //for tolower() +using namespace std; bool algorithm_name_matches (const std::string& search, const std::string&name) @@ -30,6 +32,13 @@ bool algorithm_name_matches (const std::string& search, return true; } +bool matches_icase (string name, string search) +{ + for_each (name.begin(), name.end(), ::tolower); + for_each (search.begin(), search.end(), ::tolower); + return name.find (search) != name.npos; +} + bool keyspec_matches (const std::string&search, const std::string&name, const std::string&keyid) @@ -43,6 +52,5 @@ bool keyspec_matches (const std::string&search, return true; } - //TODO maybe get case-insensitive - return name.find (search) != name.npos; + return matches_icase (name, search); }