summaryrefslogtreecommitdiffstats
path: root/Src
diff options
context:
space:
mode:
Diffstat (limited to 'Src')
-rw-r--r--Src/.StringTools.cpp.swpbin0 -> 16384 bytes
-rw-r--r--Src/StringTools.cpp23
-rw-r--r--Src/StringTools.h6
3 files changed, 28 insertions, 1 deletions
diff --git a/Src/.StringTools.cpp.swp b/Src/.StringTools.cpp.swp
new file mode 100644
index 0000000..47abbdc
--- /dev/null
+++ b/Src/.StringTools.cpp.swp
Binary files differ
diff --git a/Src/StringTools.cpp b/Src/StringTools.cpp
index 346e1bd..fe16c93 100644
--- a/Src/StringTools.cpp
+++ b/Src/StringTools.cpp
@@ -95,7 +95,6 @@ std::string StringTools::Upper(const std::string& str) {
std::vector<std::string> StringTools::Split(const std::string& str, const std::string& seperator) {
std::vector<std::string> toRet;
-
// Quick-accept: str length is 0
if (str.length() == 0)
toRet.push_back("");
@@ -132,3 +131,25 @@ std::vector<std::string> StringTools::Split(const std::string& str, const std::s
return toRet;
}
+
+std::string StringTools::PadLeft(const std::string& str, const char pad, const std::size_t len) {
+ std::stringstream ss;
+
+ for (std::size_t i = str.length(); i < len; i++)
+ ss << pad;
+
+ ss << str;
+
+ return ss.str();
+}
+
+std::string StringTools::PadRight(const std::string& str, const char pad, const std::size_t len) {
+ std::stringstream ss;
+
+ ss << str;
+
+ for (std::size_t i = str.length(); i < len; i++)
+ ss << pad;
+
+ return ss.str();
+}
diff --git a/Src/StringTools.h b/Src/StringTools.h
index d65772a..e8de59d 100644
--- a/Src/StringTools.h
+++ b/Src/StringTools.h
@@ -29,6 +29,12 @@ public:
//! Will split a string by a string seperator
static std::vector<std::string> Split(const std::string& str, const std::string& seperator);
+ //! Will pad a string to the left to length l
+ static std::string PadLeft(const std::string& str, const char pad, const std::size_t len);
+
+ //! Will pad a string to the right to length l
+ static std::string PadRight(const std::string& str, const char pad, const std::size_t len);
+
private:
// No instanciation! >:(
StringTools();