aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Server/Common/StringUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Server/Common/StringUtils.h')
-rw-r--r--Minecraft.Server/Common/StringUtils.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Minecraft.Server/Common/StringUtils.h b/Minecraft.Server/Common/StringUtils.h
new file mode 100644
index 00000000..68f818e1
--- /dev/null
+++ b/Minecraft.Server/Common/StringUtils.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include <string>
+#include <vector>
+
+namespace ServerRuntime
+{
+ namespace StringUtils
+ {
+ std::string WideToUtf8(const std::wstring &value);
+ std::wstring Utf8ToWide(const char *value);
+ std::wstring Utf8ToWide(const std::string &value);
+ std::string StripUtf8Bom(const std::string &value);
+
+ std::string TrimAscii(const std::string &value);
+ std::string ToLowerAscii(const std::string &value);
+ std::string JoinTokens(const std::vector<std::string> &tokens, size_t startIndex = 0, const char *separator = " ");
+ bool StartsWithIgnoreCase(const std::string &value, const std::string &prefix);
+ bool TryParseUnsignedLongLong(const std::string &value, unsigned long long *outValue);
+ std::string GetCurrentUtcTimestampIso8601();
+ }
+}
+