diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-01 23:38:03 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-01 23:38:03 +0100 |
commit | 48d30d6ab4657e00c0c861d67285256daeff1142 (patch) | |
tree | b9dc6b6e59f09224fe3e2b80c5c247b44331e469 /source/StringUtils.cpp | |
parent | Added all current hooks to the new plugin structure. (diff) | |
download | cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.gz cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.bz2 cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.lz cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.xz cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.tar.zst cuberite-48d30d6ab4657e00c0c861d67285256daeff1142.zip |
Diffstat (limited to '')
-rw-r--r-- | source/StringUtils.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/StringUtils.cpp b/source/StringUtils.cpp index 94b4d3c0f..c9dbb1113 100644 --- a/source/StringUtils.cpp +++ b/source/StringUtils.cpp @@ -146,3 +146,16 @@ int NoCaseCompare(const AString & s1, const AString & s2) +void ReplaceString(AString & iHayStack, const AString & iNeedle, const AString & iReplaceWith)
+{
+ size_t pos1 = iHayStack.find(iNeedle);
+ while (pos1 != AString::npos)
+ {
+ iHayStack.replace( pos1, iNeedle.size(), iReplaceWith);
+ pos1 = iHayStack.find(iNeedle, pos1);
+ }
+}
+
+
+
+
|