TDME2 1.9.121
MutableString.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
10/**
11 * Mutable string class
12 * @author Andreas Drewke
13 * @version $Id$
14 */
16{
17public:
18 /**
19 * Public default constructor
20 */
22
23 /**
24 * Public constructor
25 * @param s string
26 */
27 MutableString(const string& s);
28
29 /**
30 * Public constructor
31 * @param i integer
32 */
33 MutableString(int i);
34
35 /**
36 * Public constructor
37 * @param f f
38 * @param decimals decimals
39 */
40 MutableString(float f, int32_t decimals = 3);
41
42 /**
43 * @return size
44 */
45 inline int32_t size() const {
46 return data.size();
47 }
48
49 /**
50 * Get char at index
51 * @param idx idx
52 * @return char
53 */
54 char charAt(int32_t idx) const;
55
56 /**
57 * Reset
58 */
60
61 /**
62 * Set character
63 * @param c char
64 * @return this mutable string
65 */
66 MutableString& set(char c);
67
68 /**
69 * Append character
70 * @param c char
71 * @return this mutable string
72 */
73 MutableString& append(char c);
74
75 /**
76 * Insert character c at idx
77 * @param idx index
78 * @param c char
79 * @return this mutable string
80 */
81 MutableString& insert(int32_t idx, char c);
82
83 /**
84 * Set string
85 * @param s s
86 * @return this mutable string
87 */
88 MutableString& set(const string& s);
89
90 /**
91 * Append string
92 * @param s s
93 * @return this mutable string
94 */
95 MutableString& append(const string& s);
96
97 /**
98 * Insert string at idx
99 * @param idx index
100 * @param s string
101 * @return this mutable string
102 */
103 MutableString& insert(int32_t idx, const string& s);
104
105 /**
106 * Set mutable string
107 * @param s s
108 * @return this mutable string
109 */
111
112 /**
113 * Append mutable string
114 * @param s s
115 * @return this mutable string
116 */
118
119 /**
120 * Insert mutable string at idx
121 * @param idx index
122 * @param s string
123 * @return this mutable string
124 */
125 MutableString& insert(int32_t idx, const MutableString& s);
126
127 /**
128 * Set integer
129 * @param i i
130 * @return this mutable string
131 */
132 MutableString& set(int32_t i);
133
134 /**
135 * Append integer
136 * @param i i
137 * @return this mutable string
138 */
139 MutableString& append(int32_t i);
140
141 /**
142 * Insert integer at idx
143 * @param idx index
144 * @param i i
145 * @return this mutable string
146 */
147 MutableString& insert(int32_t idx, int32_t i);
148
149 /**
150 * Set float
151 * @param f f
152 * @param decimals decimals
153 * @return this mutable string
154 */
155 MutableString& set(float f, int32_t decimals = 3);
156
157 /**
158 * Append float with given decimals
159 * @param f f
160 * @param decimals decimals
161 * @return this mutable string
162 */
163 MutableString& append(float f, int32_t decimals = 3);
164
165 /**
166 * Insert float at idx
167 * @param idx index
168 * @param f float
169 * @param decimals decimals
170 * @return this mutable string
171 */
172 MutableString& insert(int32_t idx, float f, int32_t decimals = 3);
173
174 /**
175 * Remove characters at idx with given length
176 * @param idx idx
177 * @param count length
178 * @return this mutable string
179 */
180 MutableString& remove(int32_t idx, int32_t count);
181
182 /**
183 * Returns the character index where string s have been found or -1 if not found
184 * @param s string
185 * @param idx index
186 * @return index where string has been found or -1
187 */
188 int32_t indexOf(const MutableString& s, int32_t idx) const;
189
190 /**
191 * Returns the character index where string s have been found or -1 if not found
192 * @param s string
193 * @return index where string has been found or -1
194 */
195 int32_t indexOf(const MutableString& s) const;
196
197 /**
198 * Replace string with another string
199 * @param what what to replace
200 * @param by to replace by
201 * @param beginIndex index to begin with
202 */
203 void replace(const string& what, const string& by, int beginIndex = 0);
204
205 /**
206 * @return if mutable string is empty
207 */
208 bool empty() const;
209
210 /**
211 * Equals
212 * @param s2 string 2
213 * @return string 2 equals this string
214 */
215 bool equals(const string& s2) const;
216
217 /**
218 * Equals
219 * @param s2 string 2
220 * @return string 2 equals this string
221 */
222 bool equals(const MutableString& s2) const;
223
224 /**
225 * @return string
226 */
227 inline const string& getString() const {
228 return data;
229 }
230
231 /**
232 * Clone
233 */
235
236private:
237 string data;
238};
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.
const string & getString() const