TDME2 1.9.121
MutableString.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
6#include <tdme/math/Math.h>
9
10using std::string;
11using std::to_string;
12
17
18MutableString::MutableString()
19{
20}
21
23{
24 data = s;
25}
26
28{
29 set(i);
30}
31
32MutableString::MutableString(float f, int32_t decimals) {
33 set(f, decimals);
34}
35
36char MutableString::charAt(int32_t idx) const
37{
38 return data[idx];
39}
40
42{
43 data.clear();
44 return *this;
45}
46
48{
49 reset();
50 append(c);
51 return *this;
52}
53
55{
56 data.push_back(c);
57 return *this;
58}
59
61{
62 data.insert(idx, 1, c);
63 return *this;
64}
65
67{
68 reset();
69 append(s);
70 return *this;
71}
72
74{
75 data+= s;
76 return *this;
77}
78
79MutableString& MutableString::insert(int32_t idx, const string& s)
80{
81 data.insert(idx, s);
82 return *this;
83}
84
86{
87 reset();
88 append(s);
89 return *this;
90}
91
93{
94 data+= s.data;
95 return *this;
96}
97
99{
100 insert(idx, s.data);
101 return *this;
102}
103
105{
106 reset();
107 append(i);
108 return *this;
109}
110
112{
113 data+= to_string(i);
114 return *this;
115}
116
117MutableString& MutableString::insert(int32_t idx, int32_t i)
118{
119 // see: http://stackoverflow.com/questions/7123490/how-compiler-is-converting-integer-to-string-and-vice-versa
120 auto negative = false;
121 if (i < 0) {
122 negative = true;
123 i = -i;
124 }
125 while (true == true) {
126 auto remainder = i % 10;
127 i = i / 10;
128 insert(idx, static_cast< char >(('0' + remainder)));
129 if (i == 0) {
130 break;
131 }
132 }
133 if (negative == true) {
134 insert(idx, '-');
135 }
136 return *this;
137}
138
139MutableString& MutableString::set(float f, int32_t decimals)
140{
141 reset();
142 append(f, decimals);
143 return *this;
144}
145
146MutableString& MutableString::append(float f, int32_t decimals)
147{
148 insert(data.size(), f, decimals);
149 return *this;
150}
151
152MutableString& MutableString::insert(int32_t idx, float f, int32_t decimals)
153{
154 // see: http://stackoverflow.com/questions/7123490/how-compiler-is-converting-integer-to-string-and-vice-versa
155 auto integer = static_cast<int>(f);
156 for (auto i = 0; i < decimals; i++) {
157 auto integerDecimal = static_cast<int>(((f - integer) * Math::pow(10.0f, static_cast<float>(i) + 1.0f))) - (10 * static_cast<int>(((f - integer) * Math::pow(10.0f, static_cast<float>(i)))));
158 insert(idx + i, Math::abs(integerDecimal));
159 }
160 insert(idx, '.');
161 insert(idx, Math::abs(integer));
162 if (f < 0.0) insert(idx, '-');
163 return *this;
164}
165
166MutableString& MutableString::remove(int32_t idx, int32_t count)
167{
168 data.erase(idx, count);
169 return *this;
170}
171
172int32_t MutableString::indexOf(const MutableString& s, int32_t idx) const
173{
174 return data.find(s.data, idx);
175}
176
178{
179 return indexOf(s, 0);
180}
181
182void MutableString::replace(const string& what, const string& by, int beginIndex)
183{
184 data = StringTools::replace(data, what, by, beginIndex);
185}
186
188 return data.empty();
189}
190
191bool MutableString::equals(const string& s2) const
192{
193 return data == s2;
194}
195
197{
198 return data == s2.data;
199}
200
202 return MutableString(data);
203}
Standard math functions.
Definition: Math.h:21
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
MutableString & reset()
Reset.
MutableString & insert(int32_t idx, char c)
Insert character c at idx.
bool equals(const string &s2) const
Equals.
MutableString & remove(int32_t idx, int32_t count)
Remove characters at idx with given length.
char charAt(int32_t idx) const
Get char at index.
MutableString()
Public default constructor.
MutableString & set(char c)
Set character.
MutableString clone()
Clone.
int32_t indexOf(const MutableString &s, int32_t idx) const
Returns the character index where string s have been found or -1 if not found.
void replace(const string &what, const string &by, int beginIndex=0)
Replace string with another string.
String tools class.
Definition: StringTools.h:20
static const string replace(const string &src, const char what, const char by, int beginIndex=0)
Replace char with another char.
Definition: StringTools.cpp:27
Time utility class.
Definition: Time.h:21