]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/wxstring.tex
added public methods to select parts of displayed page
[wxWidgets.git] / docs / latex / wx / wxstring.tex
1 \section{\class{wxString}}\label{wxstring}
2
3 wxString is a class representing a character string. Please see the
4 \helpref{wxString overview}{wxstringoverview} for more information about it. As explained
5 there, wxString implements about 90\% of methods of the std::string class (iterators
6 are not supported, nor all methods which use them).
7 These standard functions are not documented in this manual so please see the STL documentation.
8 The behaviour of all these functions is identical to the behaviour described
9 there (except that wxString is sensitive to null character).
10
11 You may notice that wxString sometimes has many functions which do the same
12 thing like, for example, \helpref{Length()}{wxstringlength},
13 \helpref{Len()}{wxstringlen} and {\tt length()} which all return the string
14 length. In all cases of such duplication the {\tt std::string}-compatible
15 method ({\tt length()} in this case, always the lowercase version) should be
16 used as it will ensure smoother transition to {\tt std::string} when wxWindows
17 starts using it instead of wxString.
18
19 \wxheading{Derived from}
20
21 None
22
23 \wxheading{Include files}
24
25 <wx/string.h>
26
27 \wxheading{Predefined objects}
28
29 Objects:
30
31 {\bf wxEmptyString}
32
33 \wxheading{See also}
34
35 \overview{Overview}{wxstringoverview}
36
37 \latexignore{\rtfignore{\wxheading{Function groups}}}
38
39 \membersection{Constructors and assignment operators}
40
41 A string may be constructed either from a C string, (some number of copies of)
42 a single character or a wide (UNICODE) string. For all constructors (except the
43 default which creates an empty string) there is also a corresponding assignment
44 operator.
45
46 \helpref{wxString}{wxstringconstruct}\\
47 \helpref{operator $=$}{wxstringoperatorassign}\\
48 \helpref{\destruct{wxString}}{wxstringdestruct}
49
50 \membersection{String length}
51
52 These functions return the string length and check whether the string is empty
53 or empty it.
54
55 \helpref{Len}{wxstringlen}\\
56 \helpref{IsEmpty}{wxstringisempty}\\
57 \helpref{operator!}{wxstringoperatornot}\\
58 \helpref{Empty}{wxstringempty}\\
59 \helpref{Clear}{wxstringclear}
60
61 \membersection{Character access}
62
63 Many functions in this section take a character index in the string. As with C
64 strings and/or arrays, the indices start from $0$, so the first character of a
65 string is string[$0$]. Attempt to access a character beyond the end of the
66 string (which may be even $0$ if the string is empty) will provoke an assert
67 failure in \helpref{debug build}{debuggingoverview}, but no checks are done in
68 release builds.
69
70 This section also contains both implicit and explicit conversions to C style
71 strings. Although implicit conversion is quite convenient, it is advised to use
72 explicit \helpref{c\_str()}{wxstringcstr} method for the sake of clarity. Also
73 see \helpref{overview}{wxstringadvices} for the cases where it is necessary to
74 use it.
75
76 \helpref{GetChar}{wxstringgetchar}\\
77 \helpref{GetWritableChar}{wxstringgetwritablechar}\\
78 \helpref{SetChar}{wxstringsetchar}\\
79 \helpref{Last}{wxstringlast}\\
80 \helpref{operator []}{wxstringoperatorbracket}\\
81 \helpref{c\_str}{wxstringcstr}\\
82 \helpref{operator const char*}{wxstringoperatorconstcharpt}
83
84 \membersection{Concatenation}
85
86 Anything may be concatenated (appended to) with a string. However, you can't
87 append something to a C string (including literal constants), so to do this it
88 should be converted to a wxString first.
89
90 \helpref{operator \cinsert}{wxstringoperatorout}\\
91 \helpref{operator $+=$}{wxstringplusequal}\\
92 \helpref{operator $+$}{wxstringoperatorplus}\\
93 \helpref{Append}{wxstringappend}\\
94 \helpref{Prepend}{wxstringprepend}
95
96 \membersection{Comparison}
97
98 The default comparison function \helpref{Cmp}{wxstringcmp} is case-sensitive and
99 so is the default version of \helpref{IsSameAs}{wxstringissameas}. For case
100 insensitive comparisons you should use \helpref{CmpNoCase}{wxstringcmpnocase} or
101 give a second parameter to IsSameAs. This last function is may be more
102 convenient if only equality of the strings matters because it returns a boolean
103 true value if the strings are the same and not 0 (which is usually false in C)
104 as {\tt Cmp()} does.
105
106 \helpref{Matches}{wxstringmatches} is a poor man's regular expression matcher:
107 it only understands '*' and '?' metacharacters in the sense of DOS command line
108 interpreter.
109
110 \helpref{StartsWith}{wxstringstartswith} is helpful when parsing a line of
111 text which should start with some predefined prefix and is more efficient than
112 doing direct string comparison as you would also have to precalculate the
113 length of the prefix then.
114
115 \helpref{Cmp}{wxstringcmp}\\
116 \helpref{CmpNoCase}{wxstringcmpnocase}\\
117 \helpref{IsSameAs}{wxstringissameas}\\
118 \helpref{Matches}{wxstringmatches}\\
119 \helpref{StartsWith}{wxstringstartswith}
120
121 \membersection{Substring extraction}
122
123 These functions allow to extract substring from this string. All of them don't
124 modify the original string and return a new string containing the extracted
125 substring.
126
127 \helpref{Mid}{wxstringmid}\\
128 \helpref{operator()}{wxstringoperatorparenth}\\
129 \helpref{Left}{wxstringleft}\\
130 \helpref{Right}{wxstringright}\\
131 \helpref{BeforeFirst}{wxstringbeforefirst}\\
132 \helpref{BeforeLast}{wxstringbeforelast}\\
133 \helpref{AfterFirst}{wxstringafterfirst}\\
134 \helpref{AfterLast}{wxstringafterlast}\\
135 \helpref{StartsWith}{wxstringstartswith}
136
137 \membersection{Case conversion}
138
139 The MakeXXX() variants modify the string in place, while the other functions
140 return a new string which contains the original text converted to the upper or
141 lower case and leave the original string unchanged.
142
143 \helpref{MakeUpper}{wxstringmakeupper}\\
144 \helpref{Upper}{wxstringupper}\\
145 \helpref{MakeLower}{wxstringmakelower}\\
146 \helpref{Lower}{wxstringlower}
147
148 \membersection{Searching and replacing}
149
150 These functions replace the standard {\it strchr()} and {\it strstr()}
151 functions.
152
153 \helpref{Find}{wxstringfind}\\
154 \helpref{Replace}{wxstringreplace}
155
156 \membersection{Conversion to numbers}
157
158 The string provides functions for conversion to signed and unsigned integer and
159 floating point numbers. All three functions take a pointer to the variable to
160 put the numeric value in and return true if the {\bf entire} string could be
161 converted to a number.
162
163 \helpref{ToLong}{wxstringtolong}\\
164 \helpref{ToULong}{wxstringtoulong}\\
165 \helpref{ToDouble}{wxstringtodouble}
166
167 \membersection{Writing values into the string}
168
169 Both formatted versions (\helpref{Printf}{wxstringprintf}) and stream-like
170 insertion operators exist (for basic types only). Additionally, the
171 \helpref{Format}{wxstringformat} function allows to use simply append
172 formatted value to a string:
173
174 \begin{verbatim}
175 // the following 2 snippets are equivalent
176
177 wxString s = "...";
178 s += wxString::Format("%d", n);
179
180 wxString s;
181 s.Printf("...%d", n);
182 \end{verbatim}
183
184 \helpref{Format}{wxstringformat}\\
185 \helpref{FormatV}{wxstringformatv}\\
186 \helpref{Printf}{wxstringprintf}\\
187 \helpref{PrintfV}{wxstringprintfv}\\
188 \helpref{operator \cinsert}{wxstringoperatorout}
189
190 \membersection{Memory management}
191
192 These are "advanced" functions and they will be needed quite rarely.
193 \helpref{Alloc}{wxstringalloc} and \helpref{Shrink}{wxstringshrink} are only
194 interesting for optimization purposes.
195 \helpref{GetWriteBuf}{wxstringgetwritebuf} may be very useful when working with
196 some external API which requires the caller to provide a writable buffer, but
197 extreme care should be taken when using it: before performing any other
198 operation on the string \helpref{UngetWriteBuf}{wxstringungetwritebuf} {\bf
199 must} be called!
200
201 \helpref{Alloc}{wxstringalloc}\\
202 \helpref{Shrink}{wxstringshrink}\\
203 \helpref{GetWriteBuf}{wxstringgetwritebuf}\\
204 \helpref{UngetWriteBuf}{wxstringungetwritebuf}
205
206 \membersection{Miscellaneous}
207
208 Other string functions.
209
210 \helpref{Trim}{wxstringtrim}\\
211 \helpref{Pad}{wxstringpad}\\
212 \helpref{Truncate}{wxstringtruncate}
213
214 \membersection{wxWindows 1.xx compatibility functions}
215
216 These functions are deprecated, please consider using new wxWindows 2.0
217 functions instead of them (or, even better, std::string compatible variants).
218
219 \helpref{SubString}{wxstringsubstring}\\
220 \helpref{sprintf}{wxstringsprintf}\\
221 \helpref{CompareTo}{wxstringcompareto}\\
222 \helpref{Length}{wxstringlength}\\
223 \helpref{Freq}{wxstringfreq}\\
224 \helpref{LowerCase}{wxstringlowercase}\\
225 \helpref{UpperCase}{wxstringuppercase}\\
226 \helpref{Strip}{wxstringstrip}\\
227 \helpref{Index}{wxstringindex}\\
228 \helpref{Remove}{wxstringremove}\\
229 \helpref{First}{wxstringfirst}\\
230 \helpref{Last}{wxstringlast}\\
231 \helpref{Contains}{wxstringcontains}\\
232 \helpref{IsNull}{wxstringisnull}\\
233 \helpref{IsAscii}{wxstringisascii}\\
234 \helpref{IsNumber}{wxstringisnumber}\\
235 \helpref{IsWord}{wxstringisword}
236
237 \membersection{std::string compatibility functions}\label{wxstringat}
238
239 The supported functions are only listed here, please see any STL reference for
240 their documentation.
241
242 \begin{verbatim}
243 // take nLen chars starting at nPos
244 wxString(const wxString& str, size_t nPos, size_t nLen);
245 // take all characters from pStart to pEnd (poor man's iterators)
246 wxString(const void *pStart, const void *pEnd);
247
248 // lib.string.capacity
249 // return the length of the string
250 size_t size() const;
251 // return the length of the string
252 size_t length() const;
253 // return the maximum size of the string
254 size_t max_size() const;
255 // resize the string, filling the space with c if c != 0
256 void resize(size_t nSize, char ch = '\0');
257 // delete the contents of the string
258 void clear();
259 // returns true if the string is empty
260 bool empty() const;
261
262 // lib.string.access
263 // return the character at position n
264 char at(size_t n) const;
265 // returns the writable character at position n
266 char& at(size_t n);
267
268 // lib.string.modifiers
269 // append a string
270 wxString& append(const wxString& str);
271 // append elements str[pos], ..., str[pos+n]
272 wxString& append(const wxString& str, size_t pos, size_t n);
273 // append first n (or all if n == npos) characters of sz
274 wxString& append(const char *sz, size_t n = npos);
275
276 // append n copies of ch
277 wxString& append(size_t n, char ch);
278
279 // same as `this_string = str'
280 wxString& assign(const wxString& str);
281 // same as ` = str[pos..pos + n]
282 wxString& assign(const wxString& str, size_t pos, size_t n);
283 // same as `= first n (or all if n == npos) characters of sz'
284 wxString& assign(const char *sz, size_t n = npos);
285 // same as `= n copies of ch'
286 wxString& assign(size_t n, char ch);
287
288 // insert another string
289 wxString& insert(size_t nPos, const wxString& str);
290 // insert n chars of str starting at nStart (in str)
291 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n);
292
293 // insert first n (or all if n == npos) characters of sz
294 wxString& insert(size_t nPos, const char *sz, size_t n = npos);
295 // insert n copies of ch
296 wxString& insert(size_t nPos, size_t n, char ch);
297
298 // delete characters from nStart to nStart + nLen
299 wxString& erase(size_t nStart = 0, size_t nLen = npos);
300
301 // replaces the substring of length nLen starting at nStart
302 wxString& replace(size_t nStart, size_t nLen, const char* sz);
303 // replaces the substring with nCount copies of ch
304 wxString& replace(size_t nStart, size_t nLen, size_t nCount, char ch);
305 // replaces a substring with another substring
306 wxString& replace(size_t nStart, size_t nLen,
307 const wxString& str, size_t nStart2, size_t nLen2);
308 // replaces the substring with first nCount chars of sz
309 wxString& replace(size_t nStart, size_t nLen,
310 const char* sz, size_t nCount);
311
312 // swap two strings
313 void swap(wxString& str);
314
315 // All find() functions take the nStart argument which specifies the
316 // position to start the search on, the default value is 0. All functions
317 // return npos if there were no match.
318
319 // find a substring
320 size_t find(const wxString& str, size_t nStart = 0) const;
321
322 // find first n characters of sz
323 size_t find(const char* sz, size_t nStart = 0, size_t n = npos) const;
324
325 // find the first occurrence of character ch after nStart
326 size_t find(char ch, size_t nStart = 0) const;
327
328 // rfind() family is exactly like find() but works right to left
329
330 // as find, but from the end
331 size_t rfind(const wxString& str, size_t nStart = npos) const;
332
333 // as find, but from the end
334 size_t rfind(const char* sz, size_t nStart = npos,
335 size_t n = npos) const;
336 // as find, but from the end
337 size_t rfind(char ch, size_t nStart = npos) const;
338
339 // find first/last occurrence of any character in the set
340
341 //
342 size_t find_first_of(const wxString& str, size_t nStart = 0) const;
343 //
344 size_t find_first_of(const char* sz, size_t nStart = 0) const;
345 // same as find(char, size_t)
346 size_t find_first_of(char c, size_t nStart = 0) const;
347 //
348 size_t find_last_of (const wxString& str, size_t nStart = npos) const;
349 //
350 size_t find_last_of (const char* s, size_t nStart = npos) const;
351 // same as rfind(char, size_t)
352 size_t find_last_of (char c, size_t nStart = npos) const;
353
354 // find first/last occurrence of any character not in the set
355
356 //
357 size_t find_first_not_of(const wxString& str, size_t nStart = 0) const;
358 //
359 size_t find_first_not_of(const char* s, size_t nStart = 0) const;
360 //
361 size_t find_first_not_of(char ch, size_t nStart = 0) const;
362 //
363 size_t find_last_not_of(const wxString& str, size_t nStart=npos) const;
364 //
365 size_t find_last_not_of(const char* s, size_t nStart = npos) const;
366 //
367 size_t find_last_not_of(char ch, size_t nStart = npos) const;
368
369 // All compare functions return a negative, zero or positive value
370 // if the [sub]string is less, equal or greater than the compare() argument.
371
372 // just like strcmp()
373 int compare(const wxString& str) const;
374 // comparison with a substring
375 int compare(size_t nStart, size_t nLen, const wxString& str) const;
376 // comparison of 2 substrings
377 int compare(size_t nStart, size_t nLen,
378 const wxString& str, size_t nStart2, size_t nLen2) const;
379 // just like strcmp()
380 int compare(const char* sz) const;
381 // substring comparison with first nCount characters of sz
382 int compare(size_t nStart, size_t nLen,
383 const char* sz, size_t nCount = npos) const;
384
385 // substring extraction
386 wxString substr(size_t nStart = 0, size_t nLen = npos) const;
387 \end{verbatim}
388
389 %%%%% MEMBERS HERE %%%%%
390 \helponly{\insertatlevel{2}{
391
392 \wxheading{Members}
393
394 }}
395
396 \membersection{wxString::wxString}\label{wxstringconstruct}
397
398 \func{}{wxString}{\void}
399
400 Default constructor.
401
402 \func{}{wxString}{\param{const wxString\&}{ x}}
403
404 Copy constructor.
405
406 \func{}{wxString}{\param{char}{ ch}, \param{size\_t}{ n = 1}}
407
408 Constructs a string of {\it n} copies of character {\it ch}.
409
410 \func{}{wxString}{\param{const char*}{ psz}, \param{size\_t}{ nLength = wxSTRING\_MAXLEN}}
411
412 Takes first {\it nLength} characters from the C string {\it psz}.
413 The default value of wxSTRING\_MAXLEN means to take all the string.
414
415 Note that this constructor may be used even if {\it psz} points to a buffer
416 with binary data (i.e. containing {\tt NUL} characters) as long as you provide
417 the correct value for {\it nLength}. However, the default form of it works
418 only with strings without intermediate {\tt NUL}s because it uses
419 {\tt strlen()} to calculate the effective length and it would not give correct
420 results otherwise.
421
422 \func{}{wxString}{\param{const unsigned char*}{ psz}, \param{size\_t}{ nLength = wxSTRING\_MAXLEN}}
423
424 For compilers using unsigned char: takes first {\it nLength} characters from the C string {\it psz}.
425 The default value of wxSTRING\_MAXLEN means take all the string.
426
427 \func{}{wxString}{\param{const wchar\_t*}{ psz}}
428
429 Constructs a string from the wide (UNICODE) string.
430
431 \membersection{wxString::\destruct{wxString}}\label{wxstringdestruct}
432
433 \func{}{\destruct{wxString}}{\void}
434
435 String destructor. Note that this is not virtual, so wxString must not be inherited from.
436
437 \membersection{wxString::Alloc}\label{wxstringalloc}
438
439 \func{void}{Alloc}{\param{size\_t}{ nLen}}
440
441 Preallocate enough space for wxString to store {\it nLen} characters. This function
442 may be used to increase speed when the string is constructed by repeated
443 concatenation as in
444
445 \begin{verbatim}
446
447 // delete all vowels from the string
448 wxString DeleteAllVowels(const wxString& original)
449 {
450 wxString result;
451
452 size_t len = original.length();
453
454 result.Alloc(len);
455
456 for ( size_t n = 0; n < len; n++ )
457 {
458 if ( strchr("aeuio", tolower(original[n])) == NULL )
459 result += original[n];
460 }
461
462 return result;
463 }
464
465 \end{verbatim}
466
467 because it will avoid the need of reallocating string memory many times (in case
468 of long strings). Note that it does not set the maximal length of a string - it
469 will still expand if more than {\it nLen} characters are stored in it. Also, it
470 does not truncate the existing string (use
471 \helpref{Truncate()}{wxstringtruncate} for this) even if its current length is
472 greater than {\it nLen}
473
474 \membersection{wxString::Append}\label{wxstringappend}
475
476 \func{wxString\&}{Append}{\param{const char*}{ psz}}
477
478 Concatenates {\it psz} to this string, returning a reference to it.
479
480 \func{wxString\&}{Append}{\param{char}{ ch}, \param{int}{ count = 1}}
481
482 Concatenates character {\it ch} to this string, {\it count} times, returning a reference
483 to it.
484
485 \membersection{wxString::AfterFirst}\label{wxstringafterfirst}
486
487 \constfunc{wxString}{AfterFirst}{\param{char}{ ch}}
488
489 Gets all the characters after the first occurrence of {\it ch}.
490 Returns the empty string if {\it ch} is not found.
491
492 \membersection{wxString::AfterLast}\label{wxstringafterlast}
493
494 \constfunc{wxString}{AfterLast}{\param{char}{ ch}}
495
496 Gets all the characters after the last occurrence of {\it ch}.
497 Returns the whole string if {\it ch} is not found.
498
499 \membersection{wxString::BeforeFirst}\label{wxstringbeforefirst}
500
501 \constfunc{wxString}{BeforeFirst}{\param{char}{ ch}}
502
503 Gets all characters before the first occurrence of {\it ch}.
504 Returns the whole string if {\it ch} is not found.
505
506 \membersection{wxString::BeforeLast}\label{wxstringbeforelast}
507
508 \constfunc{wxString}{BeforeLast}{\param{char}{ ch}}
509
510 Gets all characters before the last occurrence of {\it ch}.
511 Returns the empty string if {\it ch} is not found.
512
513 \membersection{wxString::c\_str}\label{wxstringcstr}
514
515 \constfunc{const char *}{c\_str}{\void}
516
517 Returns a pointer to the string data.
518
519 \membersection{wxString::Clear}\label{wxstringclear}
520
521 \func{void}{Clear}{\void}
522
523 Empties the string and frees memory occupied by it.
524
525 See also: \helpref{Empty}{wxstringempty}
526
527 \membersection{wxString::Cmp}\label{wxstringcmp}
528
529 \constfunc{int}{Cmp}{\param{const char*}{ psz}}
530
531 Case-sensitive comparison.
532
533 Returns a positive value if the string is greater than the argument, zero if
534 it is equal to it or a negative value if it is less than the argument (same semantics
535 as the standard {\it strcmp()} function).
536
537 See also \helpref{CmpNoCase}{wxstringcmpnocase}, \helpref{IsSameAs}{wxstringissameas}.
538
539 \membersection{wxString::CmpNoCase}\label{wxstringcmpnocase}
540
541 \constfunc{int}{CmpNoCase}{\param{const char*}{ psz}}
542
543 Case-insensitive comparison.
544
545 Returns a positive value if the string is greater than the argument, zero if
546 it is equal to it or a negative value if it is less than the argument (same semantics
547 as the standard {\it strcmp()} function).
548
549 See also \helpref{Cmp}{wxstringcmp}, \helpref{IsSameAs}{wxstringissameas}.
550
551 \membersection{wxString::CompareTo}\label{wxstringcompareto}
552
553 \begin{verbatim}
554 #define NO_POS ((int)(-1)) // undefined position
555 enum caseCompare {exact, ignoreCase};
556 \end{verbatim}
557
558 \constfunc{int}{CompareTo}{\param{const char*}{ psz}, \param{caseCompare}{ cmp = exact}}
559
560 Case-sensitive comparison. Returns 0 if equal, 1 if greater or -1 if less.
561
562 \membersection{wxString::Contains}\label{wxstringcontains}
563
564 \constfunc{bool}{Contains}{\param{const wxString\&}{ str}}
565
566 Returns 1 if target appears anyhere in wxString; else 0.
567
568 \membersection{wxString::Empty}\label{wxstringempty}
569
570 \func{void}{Empty}{\void}
571
572 Makes the string empty, but doesn't free memory occupied by the string.
573
574 See also: \helpref{Clear()}{wxstringclear}.
575
576 \membersection{wxString::Find}\label{wxstringfind}
577
578 \constfunc{int}{Find}{\param{char}{ ch}, \param{bool}{ fromEnd = false}}
579
580 Searches for the given character. Returns the starting index, or -1 if not found.
581
582 \constfunc{int}{Find}{\param{const char*}{ sz}}
583
584 Searches for the given string. Returns the starting index, or -1 if not found.
585
586 \membersection{wxString::First}\label{wxstringfirst}
587
588 \func{int}{First}{\param{char}{ c}}
589
590 \constfunc{int}{First}{\param{const char*}{ psz}}
591
592 \constfunc{int}{First}{\param{const wxString\&}{ str}}
593
594 Same as \helpref{Find}{wxstringfind}.
595
596 \membersection{wxString::Format}\label{wxstringformat}
597
598 \func{static wxString}{Format}{\param{const wxChar }{*format}, \param{}{...}}
599
600 This static function returns the string containing the result of calling
601 \helpref{Printf}{wxstringprintf} with the passed parameters on it.
602
603 \wxheading{See also}
604
605 \helpref{FormatV}{wxstringformatv}, \helpref{Printf}{wxstringprintf}
606
607 \membersection{wxString::FormatV}\label{wxstringformatv}
608
609 \func{static wxString}{Format}{\param{const wxChar }{*format}, \param{va\_list }{argptr}}
610
611 This static function returns the string containing the result of calling
612 \helpref{PrintfV}{wxstringprintfv} with the passed parameters on it.
613
614 \wxheading{See also}
615
616 \helpref{Format}{wxstringformat}, \helpref{PrintfV}{wxstringprintfv}
617
618 \membersection{wxString::Freq}\label{wxstringfreq}
619
620 \constfunc{int}{Freq}{\param{char }{ch}}
621
622 Returns the number of occurrences of {\it ch} in the string.
623
624 \membersection{wxString::FromAscii}\label{wxstringfromascii}
625
626 \func{static wxString }{FromAscii}{\param{const char*}{ s}}
627
628 \func{static wxString }{FromAscii}{\param{const char}{ c}}
629
630 Converts the string or character from an ASCII, 7-bit form
631 to the native wxString representation. Most useful when using
632 a Unicode build of wxWindows.
633
634 \membersection{wxString::GetChar}\label{wxstringgetchar}
635
636 \constfunc{char}{GetChar}{\param{size\_t}{ n}}
637
638 Returns the character at position {\it n} (read-only).
639
640 \membersection{wxString::GetData}\label{wxstringgetdata}
641
642 \constfunc{const char*}{GetData}{\void}
643
644 wxWindows compatibility conversion. Returns a constant pointer to the data in the string.
645
646 \membersection{wxString::GetWritableChar}\label{wxstringgetwritablechar}
647
648 \func{char\&}{GetWritableChar}{\param{size\_t}{ n}}
649
650 Returns a reference to the character at position {\it n}.
651
652 \membersection{wxString::GetWriteBuf}\label{wxstringgetwritebuf}
653
654 \func{wxChar*}{GetWriteBuf}{\param{size\_t}{ len}}
655
656 Returns a writable buffer of at least {\it len} bytes.
657 It returns a pointer to a new memory block, and the
658 existing data will not be copied.
659
660 Call \helpref{wxString::UngetWriteBuf}{wxstringungetwritebuf} as soon as possible
661 to put the string back into a reasonable state.
662
663 \membersection{wxString::Index}\label{wxstringindex}
664
665 \constfunc{size\_t}{Index}{\param{char}{ ch}}
666
667 \constfunc{size\_t}{Index}{\param{const char*}{ sz}}
668
669 Same as \helpref{wxString::Find}{wxstringfind}.
670
671 \constfunc{size\_t}{Index}{\param{const char*}{ sz}, \param{bool}{ caseSensitive = true}, \param{bool}{ fromEnd = false}}
672
673 Search the element in the array, starting from either side.
674
675 If {\it fromEnd} is true, reverse search direction.
676
677 If {\bf caseSensitive}, comparison is case sensitive (the default).
678
679 Returns the index of the first item matched, or wxNOT\_FOUND.
680
681 % TODO
682 %\membersection{wxString::insert}\label{wxstringinsert}
683 % Wrong!
684 %\func{void}{insert}{\param{const wxString\&}{ str}, \param{size\_t}{ index}}
685 %
686 %Add new element at the given position.
687 %
688 \membersection{wxString::IsAscii}\label{wxstringisascii}
689
690 \constfunc{bool}{IsAscii}{\void}
691
692 Returns true if the string contains only ASCII characters.
693
694 \membersection{wxString::IsEmpty}\label{wxstringisempty}
695
696 \constfunc{bool}{IsEmpty}{\void}
697
698 Returns true if the string is empty.
699
700 \membersection{wxString::IsNull}\label{wxstringisnull}
701
702 \constfunc{bool}{IsNull}{\void}
703
704 Returns true if the string is empty (same as \helpref{IsEmpty}{wxstringisempty}).
705
706 \membersection{wxString::IsNumber}\label{wxstringisnumber}
707
708 \constfunc{bool}{IsNumber}{\void}
709
710 Returns true if the string is an integer (with possible sign).
711
712 \membersection{wxString::IsSameAs}\label{wxstringissameas}
713
714 \constfunc{bool}{IsSameAs}{\param{const char*}{ psz}, \param{bool}{ caseSensitive = true}}
715
716 Test for string equality, case-sensitive (default) or not.
717
718 caseSensitive is true by default (case matters).
719
720 Returns true if strings are equal, false otherwise.
721
722 See also \helpref{Cmp}{wxstringcmp}, \helpref{CmpNoCase}{wxstringcmpnocase}, \helpref{IsSameAs}{wxstringissameas2}
723
724 \membersection{wxString::IsSameAs}\label{wxstringissameas2}
725
726 \constfunc{bool}{IsSameAs}{\param{char}{ c}, \param{bool}{ caseSensitive = true}}
727
728 Test whether the string is equal to the single character {\it c}. The test is
729 case-sensitive if {\it caseSensitive} is true (default) or not if it is false.
730
731 Returns true if the string is equal to the character, false otherwise.
732
733 See also \helpref{Cmp}{wxstringcmp}, \helpref{CmpNoCase}{wxstringcmpnocase}, \helpref{IsSameAs}{wxstringissameas}
734
735 \membersection{wxString::IsWord}\label{wxstringisword}
736
737 \constfunc{bool}{IsWord}{\void}
738
739 Returns true if the string is a word. TODO: what's the definition of a word?
740
741 \membersection{wxString::Last}\label{wxstringlast}
742
743 \constfunc{char}{Last}{\void}
744
745 Returns the last character.
746
747 \func{char\&}{Last}{\void}
748
749 Returns a reference to the last character (writable).
750
751 \membersection{wxString::Left}\label{wxstringleft}
752
753 \constfunc{wxString}{Left}{\param{size\_t}{ count}}
754
755 Returns the first {\it count} characters of the string.
756
757 \membersection{wxString::Len}\label{wxstringlen}
758
759 \constfunc{size\_t}{Len}{\void}
760
761 Returns the length of the string.
762
763 \membersection{wxString::Length}\label{wxstringlength}
764
765 \constfunc{size\_t}{Length}{\void}
766
767 Returns the length of the string (same as Len).
768
769 \membersection{wxString::Lower}\label{wxstringlower}
770
771 \constfunc{wxString}{Lower}{\void}
772
773 Returns this string converted to the lower case.
774
775 \membersection{wxString::LowerCase}\label{wxstringlowercase}
776
777 \func{void}{LowerCase}{\void}
778
779 Same as MakeLower.
780
781 \membersection{wxString::MakeLower}\label{wxstringmakelower}
782
783 \func{wxString\&}{MakeLower}{\void}
784
785 Converts all characters to lower case and returns the result.
786
787 \membersection{wxString::MakeUpper}\label{wxstringmakeupper}
788
789 \func{wxString\&}{MakeUpper}{\void}
790
791 Converts all characters to upper case and returns the result.
792
793 \membersection{wxString::Matches}\label{wxstringmatches}
794
795 \constfunc{bool}{Matches}{\param{const char*}{ szMask}}
796
797 Returns true if the string contents matches a mask containing '*' and '?'.
798
799 \membersection{wxString::Mid}\label{wxstringmid}
800
801 \constfunc{wxString}{Mid}{\param{size\_t}{ first}, \param{size\_t}{ count = wxSTRING\_MAXLEN}}
802
803 Returns a substring starting at {\it first}, with length {\it count}, or the rest of
804 the string if {\it count} is the default value.
805
806 \membersection{wxString::Pad}\label{wxstringpad}
807
808 \func{wxString\&}{Pad}{\param{size\_t}{ count}, \param{char}{ pad = ' '}, \param{bool}{ fromRight = true}}
809
810 Adds {\it count} copies of {\it pad} to the beginning, or to the end of the string (the default).
811
812 Removes spaces from the left or from the right (default).
813
814 \membersection{wxString::Prepend}\label{wxstringprepend}
815
816 \func{wxString\&}{Prepend}{\param{const wxString\&}{ str}}
817
818 Prepends {\it str} to this string, returning a reference to this string.
819
820 \membersection{wxString::Printf}\label{wxstringprintf}
821
822 \func{int}{Printf}{\param{const char* }{pszFormat}, \param{}{...}}
823
824 Similar to the standard function {\it sprintf()}. Returns the number of
825 characters written, or an integer less than zero on error.
826
827 {\bf NB:} This function will use a safe version of {\it vsprintf()} (usually called
828 {\it vsnprintf()}) whenever available to always allocate the buffer of correct
829 size. Unfortunately, this function is not available on all platforms and the
830 dangerous {\it vsprintf()} will be used then which may lead to buffer overflows.
831
832 \membersection{wxString::PrintfV}\label{wxstringprintfv}
833
834 \func{int}{PrintfV}{\param{const char* }{pszFormat}, \param{va\_list}{ argPtr}}
835
836 Similar to vprintf. Returns the number of characters written, or an integer less than zero
837 on error.
838
839 \membersection{wxString::Remove}\label{wxstringremove}
840
841 \func{wxString\&}{Remove}{\param{size\_t}{ pos}}
842
843 Same as Truncate. Removes the portion from {\it pos} to the end of the string.
844
845 \func{wxString\&}{Remove}{\param{size\_t}{ pos}, \param{size\_t}{ len}}
846
847 Removes the {\it len} characters from the string, starting at {\it pos}.
848
849 \membersection{wxString::RemoveLast}\label{wxstringremovelast}
850
851 \func{wxString\&}{RemoveLast}{\void}
852
853 Removes the last character.
854
855 \membersection{wxString::Replace}\label{wxstringreplace}
856
857 \func{size\_t}{Replace}{\param{const char*}{ szOld}, \param{const char*}{ szNew}, \param{bool}{ replaceAll = true}}
858
859 Replace first (or all) occurrences of substring with another one.
860
861 {\it replaceAll}: global replace (default), or only the first occurrence.
862
863 Returns the number of replacements made.
864
865 \membersection{wxString::Right}\label{wxstringright}
866
867 \constfunc{wxString}{Right}{\param{size\_t}{ count}}
868
869 Returns the last {\it count} characters.
870
871 \membersection{wxString::SetChar}\label{wxstringsetchar}
872
873 \func{void}{SetChar}{\param{size\_t}{ n}, \param{char}{ch}}
874
875 Sets the character at position {\it n}.
876
877 \membersection{wxString::Shrink}\label{wxstringshrink}
878
879 \func{void}{Shrink}{\void}
880
881 Minimizes the string's memory. This can be useful after a call to
882 \helpref{Alloc()}{wxstringalloc} if too much memory were preallocated.
883
884 \membersection{wxString::sprintf}\label{wxstringsprintf}
885
886 \func{void}{sprintf}{\param{const char* }{ fmt}}
887
888 The same as Printf.
889
890 \membersection{wxString::StartsWith}\label{wxstringstartswith}
891
892 \constfunc{bool}{StartsWith}{\param{const wxChar }{*prefix}, \param{wxString }{*rest = NULL}}
893
894 This function can be used to test if the string starts with the specified
895 {\it prefix}. If it does, the function will return {\tt true} and put the rest
896 of the string (i.e. after the prefix) into {\it rest} string if it is not
897 {\tt NULL}. Otherwise, the function returns {\tt false} and doesn't modify the
898 {\it rest}.
899
900 \membersection{wxString::Strip}\label{wxstringstrip}
901
902 \begin{verbatim}
903 enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
904 \end{verbatim}
905
906 \constfunc{wxString}{Strip}{\param{stripType}{ s = trailing}}
907
908 Strip characters at the front and/or end. The same as Trim except that it
909 doesn't change this string.
910
911 \membersection{wxString::SubString}\label{wxstringsubstring}
912
913 \constfunc{wxString}{SubString}{\param{size\_t}{ from}, \param{size\_t}{ to}}
914
915 Deprecated, use \helpref{Mid}{wxstringmid} instead (but note that parameters
916 have different meaning).
917
918 Returns the part of the string between the indices {\it from} and {\it to}
919 inclusive.
920
921 \membersection{wxString::ToAscii}\label{wxstringtoascii}
922
923 \constfunc{const char*}{ToAscii}{\void}
924
925 Converts the string to an ASCII, 7-bit string (ANSI builds only).
926
927 \constfunc{const wxCharBuffer}{ToAscii}{\void}
928
929 Converts the string to an ASCII, 7-bit string in the form of
930 a wxCharBuffer (Unicode builds only).
931
932 \membersection{wxString::ToDouble}\label{wxstringtodouble}
933
934 \constfunc{bool}{ToDouble}{\param{double}{ *val}}
935
936 Attempts to convert the string to a floating point number. Returns true on
937 success (the number is stored in the location pointed to by {\it val}) or false
938 if the string does not represent such number.
939
940 \wxheading{See also}
941
942 \helpref{wxString::ToLong}{wxstringtolong},\\
943 \helpref{wxString::ToULong}{wxstringtoulong}
944
945 \membersection{wxString::ToLong}\label{wxstringtolong}
946
947 \constfunc{bool}{ToLong}{\param{long}{ *val}, \param{int }{base = $10$}}
948
949 Attempts to convert the string to a signed integer in base {\it base}. Returns
950 {\tt true} on success in which case the number is stored in the location
951 pointed to by {\it val} or {\tt false} if the string does not represent a
952 valid number in the given base.
953
954 The value of {\it base} must be comprised between $2$ and $36$, inclusive, or
955 be a special value $0$ which means that the usual rules of {\tt C} numbers are
956 applied: if the number starts with {\tt 0x} it is considered to be in base
957 $16$, if it starts with {\tt 0} - in base $8$ and in base $10$ otherwise. Note
958 that you may not want to specify the base $0$ if you are parsing the numbers
959 which may have leading zeroes as they can yield unexpected (to the user not
960 familiar with C) results.
961
962 \wxheading{See also}
963
964 \helpref{wxString::ToDouble}{wxstringtodouble},\\
965 \helpref{wxString::ToULong}{wxstringtoulong}
966
967 \membersection{wxString::ToULong}\label{wxstringtoulong}
968
969 \constfunc{bool}{ToULong}{\param{unsigned long}{ *val}, \param{int }{base = $10$}}
970
971 Attempts to convert the string to a ansigned integer in base {\it base}.
972 Returns {\tt true} on success in which case the number is stored in the
973 location pointed to by {\it val} or {\tt false} if the string does not
974 represent a valid number in the given base.
975
976 See \helpref{wxString::ToLong}{wxstringtolong} for the more detailed
977 description of the {\it base} parameter.
978
979 \wxheading{See also}
980
981 \helpref{wxString::ToDouble}{wxstringtodouble},\\
982 \helpref{wxString::ToLong}{wxstringtolong}
983
984 \membersection{wxString::Trim}\label{wxstringtrim}
985
986 \func{wxString\&}{Trim}{\param{bool}{ fromRight = true}}
987
988 Removes spaces from the left or from the right (default).
989
990 \membersection{wxString::Truncate}\label{wxstringtruncate}
991
992 \func{wxString\&}{Truncate}{\param{size\_t}{ len}}
993
994 Truncate the string to the given length.
995
996 \membersection{wxString::UngetWriteBuf}\label{wxstringungetwritebuf}
997
998 \func{void}{UngetWriteBuf}{\void}
999
1000 \func{void}{UngetWriteBuf}{\param{size\_t }{len}}
1001
1002 Puts the string back into a reasonable state (in which it can be used
1003 normally), after
1004 \rtfsp\helpref{wxString::GetWriteBuf}{wxstringgetwritebuf} was called.
1005
1006 The version of the function without the {\it len} parameter will calculate the
1007 new string length itself assuming that the string is terminated by the first
1008 {\tt NUL} character in it while the second one will use the specified length
1009 and thus is the only version which should be used with the strings with
1010 embedded {\tt NUL}s (it is also slightly more efficient as {\tt strlen()}
1011 doesn't have to be called).
1012
1013 \membersection{wxString::Upper}\label{wxstringupper}
1014
1015 \constfunc{wxString}{Upper}{\void}
1016
1017 Returns this string converted to upper case.
1018
1019 \membersection{wxString::UpperCase}\label{wxstringuppercase}
1020
1021 \func{void}{UpperCase}{\void}
1022
1023 The same as MakeUpper.
1024
1025 \membersection{wxString::operator!}\label{wxstringoperatornot}
1026
1027 \constfunc{bool}{operator!}{\void}
1028
1029 Empty string is false, so !string will only return true if the string is empty.
1030 This allows the tests for NULLness of a {\it const char *} pointer and emptyness
1031 of the string to look the same in the code and makes it easier to port old code
1032 to wxString.
1033
1034 See also \helpref{IsEmpty()}{wxstringisempty}.
1035
1036 \membersection{wxString::operator $=$}\label{wxstringoperatorassign}
1037
1038 \func{wxString\&}{operator $=$}{\param{const wxString\&}{ str}}
1039
1040 \func{wxString\&}{operator $=$}{\param{const char*}{ psz}}
1041
1042 \func{wxString\&}{operator $=$}{\param{char}{ c}}
1043
1044 \func{wxString\&}{operator $=$}{\param{const unsigned char*}{ psz}}
1045
1046 \func{wxString\&}{operator $=$}{\param{const wchar\_t*}{ pwz}}
1047
1048 Assignment: the effect of each operation is the same as for the corresponding
1049 constructor (see \helpref{wxString constructors}{wxstringconstruct}).
1050
1051 \membersection{wxString::operator $+$}\label{wxstringoperatorplus}
1052
1053 Concatenation: all these operators return a new strign equal to the sum of the
1054 operands.
1055
1056 \func{wxString}{operator $+$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1057
1058 \func{wxString}{operator $+$}{\param{const wxString\&}{ x}, \param{const char*}{ y}}
1059
1060 \func{wxString}{operator $+$}{\param{const wxString\&}{ x}, \param{char}{ y}}
1061
1062 \func{wxString}{operator $+$}{\param{const char*}{ x}, \param{const wxString\&}{ y}}
1063
1064 \membersection{wxString::operator $+=$}\label{wxstringplusequal}
1065
1066 \func{void}{operator $+=$}{\param{const wxString\&}{ str}}
1067
1068 \func{void}{operator $+=$}{\param{const char*}{ psz}}
1069
1070 \func{void}{operator $+=$}{\param{char}{ c}}
1071
1072 Concatenation in place: the argument is appended to the string.
1073
1074 \membersection{wxString::operator []}\label{wxstringoperatorbracket}
1075
1076 \func{char\&}{operator []}{\param{size\_t}{ i}}
1077
1078 \func{char}{operator []}{\param{size\_t}{ i}}
1079
1080 \func{char}{operator []}{\param{int}{ i}}
1081
1082 Element extraction.
1083
1084 \membersection{wxString::operator ()}\label{wxstringoperatorparenth}
1085
1086 \func{wxString}{operator ()}{\param{size\_t}{ start}, \param{size\_t}{ len}}
1087
1088 Same as Mid (substring extraction).
1089
1090 \membersection{wxString::operator \cinsert}\label{wxstringoperatorout}
1091
1092 \func{wxString\&}{operator \cinsert}{\param{const wxString\&}{ str}}
1093
1094 \func{wxString\&}{operator \cinsert}{\param{const char*}{ psz}}
1095
1096 \func{wxString\&}{operator \cinsert}{\param{char }{ch}}
1097
1098 Same as $+=$.
1099
1100 \func{wxString\&}{operator \cinsert}{\param{int}{ i}}
1101
1102 \func{wxString\&}{operator \cinsert}{\param{float}{ f}}
1103
1104 \func{wxString\&}{operator \cinsert}{\param{double}{ d}}
1105
1106 These functions work as C++ stream insertion operators: they insert the given
1107 value into the string. Precision or format cannot be set using them, you can use
1108 \helpref{Printf}{wxstringprintf} for this.
1109
1110 \membersection{wxString::operator \cextract}\label{wxstringoperatorin}
1111
1112 \func{friend istream\&}{operator \cextract}{\param{istream\&}{ is}, \param{wxString\&}{ str}}
1113
1114 Extraction from a stream.
1115
1116 \membersection{wxString::operator const char*}\label{wxstringoperatorconstcharpt}
1117
1118 \constfunc{}{operator const char*}{\void}
1119
1120 Implicit conversion to a C string.
1121
1122 \membersection{Comparison operators}\label{wxstringcomparison}
1123
1124 \func{bool}{operator $==$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1125
1126 \func{bool}{operator $==$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1127
1128 \func{bool}{operator $!=$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1129
1130 \func{bool}{operator $!=$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1131
1132 \func{bool}{operator $>$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1133
1134 \func{bool}{operator $>$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1135
1136 \func{bool}{operator $>=$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1137
1138 \func{bool}{operator $>=$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1139
1140 \func{bool}{operator $<$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1141
1142 \func{bool}{operator $<$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1143
1144 \func{bool}{operator $<=$}{\param{const wxString\&}{ x}, \param{const wxString\&}{ y}}
1145
1146 \func{bool}{operator $<=$}{\param{const wxString\&}{ x}, \param{const char*}{ t}}
1147
1148 \wxheading{Remarks}
1149
1150 These comparisons are case-sensitive.
1151
1152
1153 \section{\class{wxStringBuffer}}\label{wxstringbuffer}
1154
1155 This tiny class allows to conveniently access the \helpref{wxString}{wxstring}
1156 internal buffer as a writable pointer without any risk to forget to restore
1157 the string to the usable state later.
1158
1159 For example, assuming you have a low-level OS function called
1160 {\tt GetMeaningOfLifeAsString(char *)} returning the value in the provided
1161 buffer (which must be writable, of course) you might call it like this:
1162
1163 \begin{verbatim}
1164 wxString theAnswer;
1165 GetMeaningOfLifeAsString(wxStringBuffer(theAnswer, 1024));
1166 if ( theAnswer != "42" )
1167 {
1168 wxLogError("Something is very wrong!");
1169 }
1170 \end{verbatim}
1171
1172 \wxheading{Derived from}
1173
1174 None
1175
1176 \wxheading{Include files}
1177
1178 <wx/string.h>
1179
1180 \latexignore{\rtfignore{\wxheading{Members}}}
1181
1182 \membersection{wxStringBuffer::wxStringBuffer}
1183
1184 \func{}{wxStringBuffer}{\param{const wxString\& }{str}, \param{size\_t }{len}}
1185
1186 Constructs a writable string buffer object associated with the given string
1187 and containing enough space for at least {\it len} characters. Basically, this
1188 is equivalent to calling \helpref{GetWriteBuf}{wxstringgetwritebuf} and
1189 saving the result.
1190
1191 \membersection{wxStringBuffer::\destruct{wxStringBuffer}}
1192
1193 \func{}{\destruct{wxStringBuffer}}{\void}
1194
1195 Restores the string passed to the constructor to the usable state by calling
1196 \helpref{UngetWriteBuf}{wxstringungetwritebuf} on it.
1197
1198 \membersection{wxStringBuffer::operator wxChar *}
1199
1200 \constfunc{wxChar *}{operator wxChar *}{\void}
1201
1202 Returns the writable pointer to a buffer of the size at least equal to the
1203 length specified in the constructor.
1204
1205