1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
#pragma once
#include <string>
#include <cstring>
#include <cctype>
namespace string
{
namespace detail
{
inline bool isEqual(const std::string::value_type& a, const std::string::value_type& b)
{
return a == b;
}
inline bool isEqualNoCase(const std::string::value_type& a, const std::string::value_type& b)
{
return ::tolower(a) == ::tolower(b);
}
} // detail
/**
* Compares the two strings for equality using the given comparator function.
* Returns true if the two strings are considered equal.
*/
template<typename Comparator>
inline bool equals(const std::string& str1, const std::string& str2, Comparator compare)
{
std::string::const_iterator str1It = str1.begin();
std::string::const_iterator str1End = str1.end();
std::string::const_iterator str2It = str2.begin();
std::string::const_iterator str2End = str2.end();
for (; str1It != str1End && str2It != str2End; ++str1It, ++str2It)
{
if (!compare(*str1It, *str2It))
{
return false;
}
}
return str1It == str1End && str2It == str2End;
}
/**
* Compares the two strings for equality using the given comparator function.
* Returns true if the two strings are considered equal.
*/
template<typename Comparator>
inline bool equals(const std::string& str1, const char* str2, Comparator compare)
{
if (str2 == nullptr) return false;
std::string::const_iterator str1It = str1.begin();
std::string::const_iterator str1End = str1.end();
const char* str2It = str2;
for (; str1It != str1End && *str2It != '\0'; ++str1It, ++str2It)
{
if (!compare(*str1It, *str2It))
{
return false;
}
}
return str1It == str1End && *str2It == '\0';
}
/**
* Returns true if the given input string is equal with the given test string,
* compared case-sensitively.
*/
template<typename TestStringType>
inline bool equals(const std::string& input, const TestStringType& test)
{
return equals(input, test, detail::isEqual);
}
/**
* Returns true if the given input string is equal with the given test string,
* compared case-insensitively.
*/
template<typename TestStringType>
inline bool iequals(const std::string& input, const TestStringType& test)
{
return equals(input, test, detail::isEqualNoCase);
}
/**
* Returns true if the given input string starts with the given test string,
* compared using the given Comparator functor.
*/
template<typename Comparator>
inline bool starts_with(const std::string& input, const std::string& test, Comparator compare)
{
std::string::const_iterator inputEnd = input.end();
std::string::const_iterator testEnd = test.end();
std::string::const_iterator testIt = test.begin();
for (std::string::const_iterator inpIt = input.begin();
inpIt != inputEnd && testIt != testEnd;
++inpIt, ++testIt)
{
if (!compare(*inpIt, *testIt))
{
return false;
}
}
return testIt == testEnd;
}
/**
* Returns true if the given input string starts with the given test string sequence,
* compared using the given Comparator functor.
*/
template<typename Comparator>
inline bool starts_with(const std::string& input, const char* test, Comparator compare)
{
if (test == nullptr) return false;
std::string::const_iterator inputEnd = input.end();
const char* testIt = test;
for (std::string::const_iterator inpIt = input.begin();
inpIt != inputEnd && *testIt != '\0';
++inpIt, ++testIt)
{
if (!compare(*inpIt, *testIt))
{
return false;
}
}
return *testIt == '\0';
}
/**
* Returns true if the given input string starts with the given test string,
* compared case-sensitively.
*/
template<typename TestStringType>
inline bool starts_with(const std::string& input, const TestStringType& test)
{
return starts_with(input, test, detail::isEqual);
}
/**
* Returns true if the given input string starts with the given test string,
* compared case-insensitively.
*/
template<typename TestStringType>
inline bool istarts_with(const std::string& input, const TestStringType& test)
{
return starts_with(input, test, detail::isEqualNoCase);
}
/**
* Returns true if the given input string ends with the given test string,
* compared using the given Comparator functor.
*/
template<typename Comparator>
inline bool ends_with(const std::string& input, const std::string& test, Comparator compare)
{
std::string::const_reverse_iterator inputEnd = input.rend();
std::string::const_reverse_iterator testEnd = test.rend();
std::string::const_reverse_iterator testIt = test.rbegin();
for (std::string::const_reverse_iterator inpIt = input.rbegin();
inpIt != inputEnd && testIt != testEnd;
++inpIt, ++testIt)
{
if (!compare(*inpIt, *testIt))
{
return false;
}
}
return testIt == testEnd;
}
/**
* Returns true if the given input string ends with the given test string sequence,
* compared using the given Comparator functor.
*/
template<typename Comparator>
inline bool ends_with(const std::string& input, const char* test, Comparator compare)
{
if (test == nullptr) return false;
std::string::const_reverse_iterator inputEnd = input.rend();
const char* testIt = test + std::strlen(test) - 1;
for (std::string::const_reverse_iterator inpIt = input.rbegin();
inpIt != inputEnd && testIt >= test;
++inpIt, --testIt)
{
if (!compare(*inpIt, *testIt))
{
return false;
}
if (testIt == test)
{
return true;
}
}
return false;
}
/**
* Returns true if the given input string ends with the given test string,
* compared case-sensitively.
*/
template<typename TestStringType>
inline bool ends_with(const std::string& input, const TestStringType& test)
{
return ends_with(input, test, detail::isEqual);
}
/**
* Returns true if the given input string ends with the given test string,
* compared case-insensitively.
*/
template<typename TestStringType>
inline bool iends_with(const std::string& input, const TestStringType& test)
{
return ends_with(input, test, detail::isEqualNoCase);
}
/**
* Returns true if the given inpit string is consisting of alphanumeric characters only.
* Returns false if the input string is an empty string.
*/
inline bool isAlphaNumeric(const std::string& input)
{
for (const auto c : input)
{
if (!::isalpha(c) && !::isdigit(c))
{
return false;
}
}
return !input.empty();
}
}
|