mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Implement StrintCount utility
Counts the number or delimiters found in a given string
This commit is contained in:
parent
4cda4371cb
commit
de2400f6a2
@ -640,6 +640,21 @@ string StringUnescape(const string& svInput)
|
||||
return result;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// For counting the number of delimiters in a given string.
|
||||
size_t StringCount(const string& svInput, char cDelim)
|
||||
{
|
||||
size_t result = 0;
|
||||
for (size_t i = 0; i < svInput.size(); i++)
|
||||
{
|
||||
if (svInput[i] == cDelim)
|
||||
{
|
||||
result++;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// For splitting a string into substrings by delimiter.
|
||||
vector<string> StringSplit(string svInput, char cDelim, size_t nMax)
|
||||
|
@ -48,6 +48,7 @@ bool StringReplace(string& svInput, const string& svFrom, const string& svTo);
|
||||
string StringReplaceC(const string& svInput, const string& svFrom, const string& svTo);
|
||||
string StringEscape(const string& svInput);
|
||||
string StringUnescape(const string& svInput);
|
||||
size_t StringCount(const string& svInput, char cDelim);
|
||||
vector<string> StringSplit(string svInput, char cDelim, size_t nMax = SIZE_MAX);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
x
Reference in New Issue
Block a user