Implement String::FindFirstNotOf.

Refs #2710
This commit is contained in:
Gunnar Beutner 2013-11-07 12:17:06 +01:00
parent e25fe1ecc9
commit 14553139ae
2 changed files with 12 additions and 0 deletions

View File

@ -142,6 +142,16 @@ size_t String::FindFirstOf(char ch, size_t pos) const
return m_Data.find_first_of(ch, pos);
}
size_t String::FindFirstNotOf(const char *s, size_t pos) const
{
return m_Data.find_first_not_of(s, pos);
}
size_t String::FindFirstNotOf(char ch, size_t pos) const
{
return m_Data.find_first_not_of(ch, pos);
}
String String::SubStr(size_t first, size_t len) const
{
return m_Data.substr(first, len);

View File

@ -81,6 +81,8 @@ public:
size_t Find(const String& str, size_t pos = 0) const;
size_t FindFirstOf(const char *s, size_t pos = 0) const;
size_t FindFirstOf(char ch, size_t pos = 0) const;
size_t FindFirstNotOf(const char *s, size_t pos = 0) const;
size_t FindFirstNotOf(char ch, size_t pos = 0) const;
String SubStr(size_t first, size_t len = NPos) const;
void Replace(size_t first, size_t second, const String& str);