summaryrefslogtreecommitdiff
path: root/ZAPDUtils/Utils/StringHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'ZAPDUtils/Utils/StringHelper.h')
-rw-r--r--ZAPDUtils/Utils/StringHelper.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/ZAPDUtils/Utils/StringHelper.h b/ZAPDUtils/Utils/StringHelper.h
deleted file mode 100644
index b737a2f..0000000
--- a/ZAPDUtils/Utils/StringHelper.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include <algorithm>
-#include <cstdarg>
-#include <cstring>
-#include <numeric>
-#include <string>
-#include <vector>
-
-class StringHelper
-{
-public:
- static std::vector<std::string> Split(std::string s, const std::string& delimiter);
- static std::string Strip(std::string s, const std::string& delimiter);
- static std::string Replace(std::string str, const std::string& from, const std::string& to);
- static void ReplaceOriginal(std::string& str, const std::string& from, const std::string& to);
- static bool StartsWith(const std::string& s, const std::string& input);
- static bool Contains(const std::string& s, const std::string& input);
- static bool EndsWith(const std::string& s, const std::string& input);
- static std::string Sprintf(const char* format, ...);
- static std::string Implode(std::vector<std::string>& elements, const char* const separator);
- static int64_t StrToL(const std::string& str, int32_t base = 10);
- static std::string BoolStr(bool b);
- static bool HasOnlyDigits(const std::string& str);
- static bool IEquals(const std::string& a, const std::string& b);
-}; \ No newline at end of file