1 \section{\class{wxString
}}\label{wxstring
}
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).
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.
19 \wxheading{Derived from
}
23 \wxheading{Include files
}
27 \wxheading{Predefined objects
}
35 \overview{Overview
}{wxstringoverview
}
37 \latexignore{\rtfignore{\wxheading{Function groups
}}}
39 \membersection{Constructors and assignment operators
}
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
46 \helpref{wxString
}{wxstringconstruct
}\\
47 \helpref{operator $=$
}{wxstringoperatorassign
}\\
48 \helpref{\destruct{wxString
}}{wxstringdestruct
}
50 \membersection{String length
}
52 These functions return the string length and check whether the string is empty
55 \helpref{Len
}{wxstringlen
}\\
56 \helpref{IsEmpty
}{wxstringisempty
}\\
57 \helpref{operator!
}{wxstringoperatornot
}\\
58 \helpref{Empty
}{wxstringempty
}\\
59 \helpref{Clear
}{wxstringclear
}
61 \membersection{Character access
}
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
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
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
}
84 \membersection{Concatenation
}
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.
90 \helpref{operator
\cinsert}{wxstringoperatorout
}\\
91 \helpref{operator $+=$
}{wxstringplusequal
}\\
92 \helpref{operator $+$
}{wxstringoperatorplus
}\\
93 \helpref{Append
}{wxstringappend
}\\
94 \helpref{Prepend
}{wxstringprepend
}
96 \membersection{Comparison
}
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)
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
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.
115 \helpref{Cmp
}{wxstringcmp
}\\
116 \helpref{CmpNoCase
}{wxstringcmpnocase
}\\
117 \helpref{IsSameAs
}{wxstringissameas
}\\
118 \helpref{Matches
}{wxstringmatches
}\\
119 \helpref{StartsWith
}{wxstringstartswith
}
121 \membersection{Substring extraction
}
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
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
}
137 \membersection{Case conversion
}
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.
143 \helpref{MakeUpper
}{wxstringmakeupper
}\\
144 \helpref{Upper
}{wxstringupper
}\\
145 \helpref{MakeLower
}{wxstringmakelower
}\\
146 \helpref{Lower
}{wxstringlower
}
148 \membersection{Searching and replacing
}
150 These functions replace the standard
{\it strchr()
} and
{\it strstr()
}
153 \helpref{Find
}{wxstringfind
}\\
154 \helpref{Replace
}{wxstringreplace
}
156 \membersection{Conversion to numbers
}
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.
163 \helpref{ToLong
}{wxstringtolong
}\\
164 \helpref{ToULong
}{wxstringtoulong
}\\
165 \helpref{ToDouble
}{wxstringtodouble
}
167 \membersection{Writing values into the string
}
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:
175 // the following
2 snippets are equivalent
178 s += wxString::Format("
%d", n);
181 s.Printf("...
%d", n);
184 \helpref{Format
}{wxstringformat
}\\
185 \helpref{FormatV
}{wxstringformatv
}\\
186 \helpref{Printf
}{wxstringprintf
}\\
187 \helpref{PrintfV
}{wxstringprintfv
}\\
188 \helpref{operator
\cinsert}{wxstringoperatorout
}
190 \membersection{Memory management
}
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
201 \helpref{Alloc
}{wxstringalloc
}\\
202 \helpref{Shrink
}{wxstringshrink
}\\
203 \helpref{GetWriteBuf
}{wxstringgetwritebuf
}\\
204 \helpref{UngetWriteBuf
}{wxstringungetwritebuf
}
206 \membersection{Miscellaneous
}
208 Other string functions.
210 \helpref{Trim
}{wxstringtrim
}\\
211 \helpref{Pad
}{wxstringpad
}\\
212 \helpref{Truncate
}{wxstringtruncate
}
214 \membersection{wxWindows
1.xx compatibility functions
}
216 These functions are deprecated, please consider using new wxWindows
2.0
217 functions instead of them (or, even better, std::string compatible variants).
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
}
237 \membersection{std::string compatibility functions
}\label{wxstringat
}
239 The supported functions are only listed here, please see any STL reference for
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);
248 // lib.string.capacity
249 // return the length of the string
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
259 // returns true if the string is empty
263 // return the character at position n
264 char at(size_t n) const;
265 // returns the writable character at position n
268 // lib.string.modifiers
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);
276 // append n copies of ch
277 wxString& append(size_t n, char ch);
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);
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);
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);
298 // delete characters from nStart to nStart + nLen
299 wxString& erase(size_t nStart =
0, size_t nLen = npos);
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);
313 void swap(wxString& str);
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.
320 size_t find(const wxString& str, size_t nStart =
0) const;
322 // find first n characters of sz
323 size_t find(const char* sz, size_t nStart =
0, size_t n = npos) const;
325 // find the first occurrence of character ch after nStart
326 size_t find(char ch, size_t nStart =
0) const;
328 // rfind() family is exactly like find() but works right to left
330 // as find, but from the end
331 size_t rfind(const wxString& str, size_t nStart = npos) const;
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;
339 // find first/last occurrence of any character in the set
342 size_t find_first_of(const wxString& str, size_t nStart =
0) const;
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;
348 size_t find_last_of (const wxString& str, size_t nStart = npos) const;
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;
354 // find first/last occurrence of any character not in the set
357 size_t find_first_not_of(const wxString& str, size_t nStart =
0) const;
359 size_t find_first_not_of(const char* s, size_t nStart =
0) const;
361 size_t find_first_not_of(char ch, size_t nStart =
0) const;
363 size_t find_last_not_of(const wxString& str, size_t nStart=npos) const;
365 size_t find_last_not_of(const char* s, size_t nStart = npos) const;
367 size_t find_last_not_of(char ch, size_t nStart = npos) const;
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.
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;
385 // substring extraction
386 wxString substr(size_t nStart =
0, size_t nLen = npos) const;
389 %%%%% MEMBERS HERE %%%%%
390 \helponly{\insertatlevel{2}{
396 \membersection{wxString::wxString
}\label{wxstringconstruct
}
398 \func{}{wxString
}{\void}
402 \func{}{wxString
}{\param{const wxString\&
}{ x
}}
406 \func{}{wxString
}{\param{char
}{ ch
},
\param{size
\_t}{ n =
1}}
408 Constructs a string of
{\it n
} copies of character
{\it ch
}.
410 \func{}{wxString
}{\param{const char*
}{ psz
},
\param{size
\_t}{ nLength = wxSTRING
\_MAXLEN}}
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.
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
422 \func{}{wxString
}{\param{const unsigned char*
}{ psz
},
\param{size
\_t}{ nLength = wxSTRING
\_MAXLEN}}
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.
427 \func{}{wxString
}{\param{const wchar
\_t*
}{ psz
}}
429 Constructs a string from the wide (UNICODE) string.
431 \membersection{wxString::
\destruct{wxString
}}\label{wxstringdestruct
}
433 \func{}{\destruct{wxString
}}{\void}
435 String destructor. Note that this is not virtual, so wxString must not be inherited from.
437 \membersection{wxString::Alloc
}\label{wxstringalloc
}
439 \func{void
}{Alloc
}{\param{size
\_t}{ nLen
}}
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
447 // delete all vowels from the string
448 wxString DeleteAllVowels(const wxString& original)
452 size_t len = original.length();
456 for ( size_t n =
0; n < len; n++ )
458 if ( strchr("aeuio", tolower(original
[n
])) == NULL )
459 result += original
[n
];
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
}
474 \membersection{wxString::Append
}\label{wxstringappend
}
476 \func{wxString\&
}{Append
}{\param{const char*
}{ psz
}}
478 Concatenates
{\it psz
} to this string, returning a reference to it.
480 \func{wxString\&
}{Append
}{\param{char
}{ ch
},
\param{int
}{ count =
1}}
482 Concatenates character
{\it ch
} to this string,
{\it count
} times, returning a reference
485 \membersection{wxString::AfterFirst
}\label{wxstringafterfirst
}
487 \constfunc{wxString
}{AfterFirst
}{\param{char
}{ ch
}}
489 Gets all the characters after the first occurrence of
{\it ch
}.
490 Returns the empty string if
{\it ch
} is not found.
492 \membersection{wxString::AfterLast
}\label{wxstringafterlast
}
494 \constfunc{wxString
}{AfterLast
}{\param{char
}{ ch
}}
496 Gets all the characters after the last occurrence of
{\it ch
}.
497 Returns the whole string if
{\it ch
} is not found.
499 \membersection{wxString::BeforeFirst
}\label{wxstringbeforefirst
}
501 \constfunc{wxString
}{BeforeFirst
}{\param{char
}{ ch
}}
503 Gets all characters before the first occurrence of
{\it ch
}.
504 Returns the whole string if
{\it ch
} is not found.
506 \membersection{wxString::BeforeLast
}\label{wxstringbeforelast
}
508 \constfunc{wxString
}{BeforeLast
}{\param{char
}{ ch
}}
510 Gets all characters before the last occurrence of
{\it ch
}.
511 Returns the empty string if
{\it ch
} is not found.
513 \membersection{wxString::c
\_str}\label{wxstringcstr
}
515 \constfunc{const char *
}{c
\_str}{\void}
517 Returns a pointer to the string data.
519 \membersection{wxString::Clear
}\label{wxstringclear
}
521 \func{void
}{Clear
}{\void}
523 Empties the string and frees memory occupied by it.
525 See also:
\helpref{Empty
}{wxstringempty
}
527 \membersection{wxString::Cmp
}\label{wxstringcmp
}
529 \constfunc{int
}{Cmp
}{\param{const char*
}{ psz
}}
531 Case-sensitive comparison.
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).
537 See also
\helpref{CmpNoCase
}{wxstringcmpnocase
},
\helpref{IsSameAs
}{wxstringissameas
}.
539 \membersection{wxString::CmpNoCase
}\label{wxstringcmpnocase
}
541 \constfunc{int
}{CmpNoCase
}{\param{const char*
}{ psz
}}
543 Case-insensitive comparison.
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).
549 See also
\helpref{Cmp
}{wxstringcmp
},
\helpref{IsSameAs
}{wxstringissameas
}.
551 \membersection{wxString::CompareTo
}\label{wxstringcompareto
}
554 #define NO_POS ((int)(-
1)) // undefined position
555 enum caseCompare
{exact, ignoreCase
};
558 \constfunc{int
}{CompareTo
}{\param{const char*
}{ psz
},
\param{caseCompare
}{ cmp = exact
}}
560 Case-sensitive comparison. Returns
0 if equal,
1 if greater or -
1 if less.
562 \membersection{wxString::Contains
}\label{wxstringcontains
}
564 \constfunc{bool
}{Contains
}{\param{const wxString\&
}{ str
}}
566 Returns
1 if target appears anyhere in wxString; else
0.
568 \membersection{wxString::Empty
}\label{wxstringempty
}
570 \func{void
}{Empty
}{\void}
572 Makes the string empty, but doesn't free memory occupied by the string.
574 See also:
\helpref{Clear()
}{wxstringclear
}.
576 \membersection{wxString::Find
}\label{wxstringfind
}
578 \constfunc{int
}{Find
}{\param{char
}{ ch
},
\param{bool
}{ fromEnd = false
}}
580 Searches for the given character. Returns the starting index, or -
1 if not found.
582 \constfunc{int
}{Find
}{\param{const char*
}{ sz
}}
584 Searches for the given string. Returns the starting index, or -
1 if not found.
586 \membersection{wxString::First
}\label{wxstringfirst
}
588 \func{int
}{First
}{\param{char
}{ c
}}
590 \constfunc{int
}{First
}{\param{const char*
}{ psz
}}
592 \constfunc{int
}{First
}{\param{const wxString\&
}{ str
}}
594 Same as
\helpref{Find
}{wxstringfind
}.
596 \membersection{wxString::Format
}\label{wxstringformat
}
598 \func{static wxString
}{Format
}{\param{const wxChar
}{*format
},
\param{}{...
}}
600 This static function returns the string containing the result of calling
601 \helpref{Printf
}{wxstringprintf
} with the passed parameters on it.
605 \helpref{FormatV
}{wxstringformatv
},
\helpref{Printf
}{wxstringprintf
}
607 \membersection{wxString::FormatV
}\label{wxstringformatv
}
609 \func{static wxString
}{Format
}{\param{const wxChar
}{*format
},
\param{va
\_list }{argptr
}}
611 This static function returns the string containing the result of calling
612 \helpref{PrintfV
}{wxstringprintfv
} with the passed parameters on it.
616 \helpref{Format
}{wxstringformat
},
\helpref{PrintfV
}{wxstringprintfv
}
618 \membersection{wxString::Freq
}\label{wxstringfreq
}
620 \constfunc{int
}{Freq
}{\param{char
}{ch
}}
622 Returns the number of occurrences of
{\it ch
} in the string.
624 \membersection{wxString::GetChar
}\label{wxstringgetchar
}
626 \constfunc{char
}{GetChar
}{\param{size
\_t}{ n
}}
628 Returns the character at position
{\it n
} (read-only).
630 \membersection{wxString::GetData
}\label{wxstringgetdata
}
632 \constfunc{const char*
}{GetData
}{\void}
634 wxWindows compatibility conversion. Returns a constant pointer to the data in the string.
636 \membersection{wxString::GetWritableChar
}\label{wxstringgetwritablechar
}
638 \func{char\&
}{GetWritableChar
}{\param{size
\_t}{ n
}}
640 Returns a reference to the character at position
{\it n
}.
642 \membersection{wxString::GetWriteBuf
}\label{wxstringgetwritebuf
}
644 \func{wxChar*
}{GetWriteBuf
}{\param{size
\_t}{ len
}}
646 Returns a writable buffer of at least
{\it len
} bytes.
647 It returns a pointer to a new memory block, and the
648 existing data will not be copied.
650 Call
\helpref{wxString::UngetWriteBuf
}{wxstringungetwritebuf
} as soon as possible
651 to put the string back into a reasonable state.
653 \membersection{wxString::Index
}\label{wxstringindex
}
655 \constfunc{size
\_t}{Index
}{\param{char
}{ ch
}}
657 \constfunc{size
\_t}{Index
}{\param{const char*
}{ sz
}}
659 Same as
\helpref{wxString::Find
}{wxstringfind
}.
661 \constfunc{size
\_t}{Index
}{\param{const char*
}{ sz
},
\param{bool
}{ caseSensitive = true
},
\param{bool
}{ fromEnd = false
}}
663 Search the element in the array, starting from either side.
665 If
{\it fromEnd
} is true, reverse search direction.
667 If
{\bf caseSensitive
}, comparison is case sensitive (the default).
669 Returns the index of the first item matched, or wxNOT
\_FOUND.
672 %\membersection{wxString::insert}\label{wxstringinsert}
674 %\func{void}{insert}{\param{const wxString\&}{ str}, \param{size\_t}{ index}}
676 %Add new element at the given position.
678 \membersection{wxString::IsAscii
}\label{wxstringisascii
}
680 \constfunc{bool
}{IsAscii
}{\void}
682 Returns true if the string contains only ASCII characters.
684 \membersection{wxString::IsEmpty
}\label{wxstringisempty
}
686 \constfunc{bool
}{IsEmpty
}{\void}
688 Returns true if the string is empty.
690 \membersection{wxString::IsNull
}\label{wxstringisnull
}
692 \constfunc{bool
}{IsNull
}{\void}
694 Returns true if the string is empty (same as
\helpref{IsEmpty
}{wxstringisempty
}).
696 \membersection{wxString::IsNumber
}\label{wxstringisnumber
}
698 \constfunc{bool
}{IsNumber
}{\void}
700 Returns true if the string is an integer (with possible sign).
702 \membersection{wxString::IsSameAs
}\label{wxstringissameas
}
704 \constfunc{bool
}{IsSameAs
}{\param{const char*
}{ psz
},
\param{bool
}{ caseSensitive = true
}}
706 Test for string equality, case-sensitive (default) or not.
708 caseSensitive is true by default (case matters).
710 Returns true if strings are equal, false otherwise.
712 See also
\helpref{Cmp
}{wxstringcmp
},
\helpref{CmpNoCase
}{wxstringcmpnocase
},
\helpref{IsSameAs
}{wxstringissameas2
}
714 \membersection{wxString::IsSameAs
}\label{wxstringissameas2
}
716 \constfunc{bool
}{IsSameAs
}{\param{char
}{ c
},
\param{bool
}{ caseSensitive = true
}}
718 Test whether the string is equal to the single character
{\it c
}. The test is
719 case-sensitive if
{\it caseSensitive
} is true (default) or not if it is false.
721 Returns true if the string is equal to the character, false otherwise.
723 See also
\helpref{Cmp
}{wxstringcmp
},
\helpref{CmpNoCase
}{wxstringcmpnocase
},
\helpref{IsSameAs
}{wxstringissameas
}
725 \membersection{wxString::IsWord
}\label{wxstringisword
}
727 \constfunc{bool
}{IsWord
}{\void}
729 Returns true if the string is a word. TODO: what's the definition of a word?
731 \membersection{wxString::Last
}\label{wxstringlast
}
733 \constfunc{char
}{Last
}{\void}
735 Returns the last character.
737 \func{char\&
}{Last
}{\void}
739 Returns a reference to the last character (writable).
741 \membersection{wxString::Left
}\label{wxstringleft
}
743 \constfunc{wxString
}{Left
}{\param{size
\_t}{ count
}}
745 Returns the first
{\it count
} characters of the string.
747 \membersection{wxString::Len
}\label{wxstringlen
}
749 \constfunc{size
\_t}{Len
}{\void}
751 Returns the length of the string.
753 \membersection{wxString::Length
}\label{wxstringlength
}
755 \constfunc{size
\_t}{Length
}{\void}
757 Returns the length of the string (same as Len).
759 \membersection{wxString::Lower
}\label{wxstringlower
}
761 \constfunc{wxString
}{Lower
}{\void}
763 Returns this string converted to the lower case.
765 \membersection{wxString::LowerCase
}\label{wxstringlowercase
}
767 \func{void
}{LowerCase
}{\void}
771 \membersection{wxString::MakeLower
}\label{wxstringmakelower
}
773 \func{wxString\&
}{MakeLower
}{\void}
775 Converts all characters to lower case and returns the result.
777 \membersection{wxString::MakeUpper
}\label{wxstringmakeupper
}
779 \func{wxString\&
}{MakeUpper
}{\void}
781 Converts all characters to upper case and returns the result.
783 \membersection{wxString::Matches
}\label{wxstringmatches
}
785 \constfunc{bool
}{Matches
}{\param{const char*
}{ szMask
}}
787 Returns true if the string contents matches a mask containing '*' and '?'.
789 \membersection{wxString::Mid
}\label{wxstringmid
}
791 \constfunc{wxString
}{Mid
}{\param{size
\_t}{ first
},
\param{size
\_t}{ count = wxSTRING
\_MAXLEN}}
793 Returns a substring starting at
{\it first
}, with length
{\it count
}, or the rest of
794 the string if
{\it count
} is the default value.
796 \membersection{wxString::Pad
}\label{wxstringpad
}
798 \func{wxString\&
}{Pad
}{\param{size
\_t}{ count
},
\param{char
}{ pad = ' '
},
\param{bool
}{ fromRight = true
}}
800 Adds
{\it count
} copies of
{\it pad
} to the beginning, or to the end of the string (the default).
802 Removes spaces from the left or from the right (default).
804 \membersection{wxString::Prepend
}\label{wxstringprepend
}
806 \func{wxString\&
}{Prepend
}{\param{const wxString\&
}{ str
}}
808 Prepends
{\it str
} to this string, returning a reference to this string.
810 \membersection{wxString::Printf
}\label{wxstringprintf
}
812 \func{int
}{Printf
}{\param{const char*
}{pszFormat
},
\param{}{...
}}
814 Similar to the standard function
{\it sprintf()
}. Returns the number of
815 characters written, or an integer less than zero on error.
817 {\bf NB:
} This function will use a safe version of
{\it vsprintf()
} (usually called
818 {\it vsnprintf()
}) whenever available to always allocate the buffer of correct
819 size. Unfortunately, this function is not available on all platforms and the
820 dangerous
{\it vsprintf()
} will be used then which may lead to buffer overflows.
822 \membersection{wxString::PrintfV
}\label{wxstringprintfv
}
824 \func{int
}{PrintfV
}{\param{const char*
}{pszFormat
},
\param{va
\_list}{ argPtr
}}
826 Similar to vprintf. Returns the number of characters written, or an integer less than zero
829 \membersection{wxString::Remove
}\label{wxstringremove
}
831 \func{wxString\&
}{Remove
}{\param{size
\_t}{ pos
}}
833 Same as Truncate. Removes the portion from
{\it pos
} to the end of the string.
835 \func{wxString\&
}{Remove
}{\param{size
\_t}{ pos
},
\param{size
\_t}{ len
}}
837 Removes the
{\it len
} characters from the string, starting at
{\it pos
}.
839 \membersection{wxString::RemoveLast
}\label{wxstringremovelast
}
841 \func{wxString\&
}{RemoveLast
}{\void}
843 Removes the last character.
845 \membersection{wxString::Replace
}\label{wxstringreplace
}
847 \func{size
\_t}{Replace
}{\param{const char*
}{ szOld
},
\param{const char*
}{ szNew
},
\param{bool
}{ replaceAll = true
}}
849 Replace first (or all) occurrences of substring with another one.
851 {\it replaceAll
}: global replace (default), or only the first occurrence.
853 Returns the number of replacements made.
855 \membersection{wxString::Right
}\label{wxstringright
}
857 \constfunc{wxString
}{Right
}{\param{size
\_t}{ count
}}
859 Returns the last
{\it count
} characters.
861 \membersection{wxString::SetChar
}\label{wxstringsetchar
}
863 \func{void
}{SetChar
}{\param{size
\_t}{ n
},
\param{char
}{ch
}}
865 Sets the character at position
{\it n
}.
867 \membersection{wxString::Shrink
}\label{wxstringshrink
}
869 \func{void
}{Shrink
}{\void}
871 Minimizes the string's memory. This can be useful after a call to
872 \helpref{Alloc()
}{wxstringalloc
} if too much memory were preallocated.
874 \membersection{wxString::sprintf
}\label{wxstringsprintf
}
876 \func{void
}{sprintf
}{\param{const char*
}{ fmt
}}
880 \membersection{wxString::StartsWith
}\label{wxstringstartswith
}
882 \constfunc{bool
}{StartsWith
}{\param{const wxChar
}{*prefix
},
\param{wxString
}{*rest = NULL
}}
884 This function can be used to test if the string starts with the specified
885 {\it prefix
}. If it does, the function will return
{\tt true
} and put the rest
886 of the string (i.e. after the prefix) into
{\it rest
} string if it is not
887 {\tt NULL
}. Otherwise, the function returns
{\tt false
} and doesn't modify the
890 \membersection{wxString::Strip
}\label{wxstringstrip
}
893 enum stripType
{leading =
0x1, trailing =
0x2, both =
0x3};
896 \constfunc{wxString
}{Strip
}{\param{stripType
}{ s = trailing
}}
898 Strip characters at the front and/or end. The same as Trim except that it
899 doesn't change this string.
901 \membersection{wxString::SubString
}\label{wxstringsubstring
}
903 \constfunc{wxString
}{SubString
}{\param{size
\_t}{ from
},
\param{size
\_t}{ to
}}
905 Deprecated, use
\helpref{Mid
}{wxstringmid
} instead (but note that parameters
906 have different meaning).
908 Returns the part of the string between the indices
{\it from
} and
{\it to
}
911 \membersection{wxString::ToDouble
}\label{wxstringtodouble
}
913 \constfunc{bool
}{ToDouble
}{\param{double
}{ *val
}}
915 Attempts to convert the string to a floating point number. Returns true on
916 success (the number is stored in the location pointed to by
{\it val
}) or false
917 if the string does not represent such number.
921 \helpref{wxString::ToLong
}{wxstringtolong
},\\
922 \helpref{wxString::ToULong
}{wxstringtoulong
}
924 \membersection{wxString::ToLong
}\label{wxstringtolong
}
926 \constfunc{bool
}{ToLong
}{\param{long
}{ *val
},
\param{int
}{base = $
10$
}}
928 Attempts to convert the string to a signed integer in base
{\it base
}. Returns
929 {\tt true
} on success in which case the number is stored in the location
930 pointed to by
{\it val
} or
{\tt false
} if the string does not represent a
931 valid number in the given base.
933 The value of
{\it base
} must be comprised between $
2$ and $
36$, inclusive, or
934 be a special value $
0$ which means that the usual rules of
{\tt C
} numbers are
935 applied: if the number starts with
{\tt 0x
} it is considered to be in base
936 $
16$, if it starts with
{\tt 0} - in base $
8$ and in base $
10$ otherwise. Note
937 that you may not want to specify the base $
0$ if you are parsing the numbers
938 which may have leading zeroes as they can yield unexpected (to the user not
939 familiar with C) results.
943 \helpref{wxString::ToDouble
}{wxstringtodouble
},\\
944 \helpref{wxString::ToULong
}{wxstringtoulong
}
946 \membersection{wxString::ToULong
}\label{wxstringtoulong
}
948 \constfunc{bool
}{ToULong
}{\param{unsigned long
}{ *val
},
\param{int
}{base = $
10$
}}
950 Attempts to convert the string to a ansigned integer in base
{\it base
}.
951 Returns
{\tt true
} on success in which case the number is stored in the
952 location pointed to by
{\it val
} or
{\tt false
} if the string does not
953 represent a valid number in the given base.
955 See
\helpref{wxString::ToLong
}{wxstringtolong
} for the more detailed
956 description of the
{\it base
} parameter.
960 \helpref{wxString::ToDouble
}{wxstringtodouble
},\\
961 \helpref{wxString::ToLong
}{wxstringtolong
}
963 \membersection{wxString::Trim
}\label{wxstringtrim
}
965 \func{wxString\&
}{Trim
}{\param{bool
}{ fromRight = true
}}
967 Removes spaces from the left or from the right (default).
969 \membersection{wxString::Truncate
}\label{wxstringtruncate
}
971 \func{wxString\&
}{Truncate
}{\param{size
\_t}{ len
}}
973 Truncate the string to the given length.
975 \membersection{wxString::UngetWriteBuf
}\label{wxstringungetwritebuf
}
977 \func{void
}{UngetWriteBuf
}{\void}
979 \func{void
}{UngetWriteBuf
}{\param{size
\_t }{len
}}
981 Puts the string back into a reasonable state (in which it can be used
983 \rtfsp\helpref{wxString::GetWriteBuf
}{wxstringgetwritebuf
} was called.
985 The version of the function without the
{\it len
} parameter will calculate the
986 new string length itself assuming that the string is terminated by the first
987 {\tt NUL
} character in it while the second one will use the specified length
988 and thus is the only version which should be used with the strings with
989 embedded
{\tt NUL
}s (it is also slightly more efficient as
{\tt strlen()
}
990 doesn't have to be called).
992 \membersection{wxString::Upper
}\label{wxstringupper
}
994 \constfunc{wxString
}{Upper
}{\void}
996 Returns this string converted to upper case.
998 \membersection{wxString::UpperCase
}\label{wxstringuppercase
}
1000 \func{void
}{UpperCase
}{\void}
1002 The same as MakeUpper.
1004 \membersection{wxString::operator!
}\label{wxstringoperatornot
}
1006 \constfunc{bool
}{operator!
}{\void}
1008 Empty string is false, so !string will only return true if the string is empty.
1009 This allows the tests for NULLness of a
{\it const char *
} pointer and emptyness
1010 of the string to look the same in the code and makes it easier to port old code
1013 See also
\helpref{IsEmpty()
}{wxstringisempty
}.
1015 \membersection{wxString::operator $=$
}\label{wxstringoperatorassign
}
1017 \func{wxString\&
}{operator $=$
}{\param{const wxString\&
}{ str
}}
1019 \func{wxString\&
}{operator $=$
}{\param{const char*
}{ psz
}}
1021 \func{wxString\&
}{operator $=$
}{\param{char
}{ c
}}
1023 \func{wxString\&
}{operator $=$
}{\param{const unsigned char*
}{ psz
}}
1025 \func{wxString\&
}{operator $=$
}{\param{const wchar
\_t*
}{ pwz
}}
1027 Assignment: the effect of each operation is the same as for the corresponding
1028 constructor (see
\helpref{wxString constructors
}{wxstringconstruct
}).
1030 \membersection{wxString::operator $+$
}\label{wxstringoperatorplus
}
1032 Concatenation: all these operators return a new strign equal to the sum of the
1035 \func{wxString
}{operator $+$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1037 \func{wxString
}{operator $+$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ y
}}
1039 \func{wxString
}{operator $+$
}{\param{const wxString\&
}{ x
},
\param{char
}{ y
}}
1041 \func{wxString
}{operator $+$
}{\param{const char*
}{ x
},
\param{const wxString\&
}{ y
}}
1043 \membersection{wxString::operator $+=$
}\label{wxstringplusequal
}
1045 \func{void
}{operator $+=$
}{\param{const wxString\&
}{ str
}}
1047 \func{void
}{operator $+=$
}{\param{const char*
}{ psz
}}
1049 \func{void
}{operator $+=$
}{\param{char
}{ c
}}
1051 Concatenation in place: the argument is appended to the string.
1053 \membersection{wxString::operator
[]}\label{wxstringoperatorbracket
}
1055 \func{char\&
}{operator
[]}{\param{size
\_t}{ i
}}
1057 \func{char
}{operator
[]}{\param{size
\_t}{ i
}}
1059 \func{char
}{operator
[]}{\param{int
}{ i
}}
1063 \membersection{wxString::operator ()
}\label{wxstringoperatorparenth
}
1065 \func{wxString
}{operator ()
}{\param{size
\_t}{ start
},
\param{size
\_t}{ len
}}
1067 Same as Mid (substring extraction).
1069 \membersection{wxString::operator
\cinsert}\label{wxstringoperatorout
}
1071 \func{wxString\&
}{operator
\cinsert}{\param{const wxString\&
}{ str
}}
1073 \func{wxString\&
}{operator
\cinsert}{\param{const char*
}{ psz
}}
1075 \func{wxString\&
}{operator
\cinsert}{\param{char
}{ch
}}
1079 \func{wxString\&
}{operator
\cinsert}{\param{int
}{ i
}}
1081 \func{wxString\&
}{operator
\cinsert}{\param{float
}{ f
}}
1083 \func{wxString\&
}{operator
\cinsert}{\param{double
}{ d
}}
1085 These functions work as C++ stream insertion operators: they insert the given
1086 value into the string. Precision or format cannot be set using them, you can use
1087 \helpref{Printf
}{wxstringprintf
} for this.
1089 \membersection{wxString::operator
\cextract}\label{wxstringoperatorin
}
1091 \func{friend istream\&
}{operator
\cextract}{\param{istream\&
}{ is
},
\param{wxString\&
}{ str
}}
1093 Extraction from a stream.
1095 \membersection{wxString::operator const char*
}\label{wxstringoperatorconstcharpt
}
1097 \constfunc{}{operator const char*
}{\void}
1099 Implicit conversion to a C string.
1101 \membersection{Comparison operators
}\label{wxstringcomparison
}
1103 \func{bool
}{operator $==$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1105 \func{bool
}{operator $==$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1107 \func{bool
}{operator $!=$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1109 \func{bool
}{operator $!=$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1111 \func{bool
}{operator $>$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1113 \func{bool
}{operator $>$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1115 \func{bool
}{operator $>=$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1117 \func{bool
}{operator $>=$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1119 \func{bool
}{operator $<$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1121 \func{bool
}{operator $<$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1123 \func{bool
}{operator $<=$
}{\param{const wxString\&
}{ x
},
\param{const wxString\&
}{ y
}}
1125 \func{bool
}{operator $<=$
}{\param{const wxString\&
}{ x
},
\param{const char*
}{ t
}}
1129 These comparisons are case-sensitive.
1132 \section{\class{wxStringBuffer
}}\label{wxstringbuffer
}
1134 This tiny class allows to conveniently access the
\helpref{wxString
}{wxstring
}
1135 internal buffer as a writable pointer without any risk to forget to restore
1136 the string to the usable state later.
1138 For example, assuming you have a low-level OS function called
1139 {\tt GetMeaningOfLifeAsString(char *)
} returning the value in the provided
1140 buffer (which must be writable, of course) you might call it like this:
1144 GetMeaningOfLifeAsString(wxStringBuffer(theAnswer,
1024));
1145 if ( theAnswer != "
42" )
1147 wxLogError("Something is very wrong!");
1151 \wxheading{Derived from
}
1155 \wxheading{Include files
}
1159 \latexignore{\rtfignore{\wxheading{Members
}}}
1161 \membersection{wxStringBuffer::wxStringBuffer
}
1163 \func{}{wxStringBuffer
}{\param{const wxString\&
}{str
},
\param{size
\_t }{len
}}
1165 Constructs a writable string buffer object associated with the given string
1166 and containing enough space for at least
{\it len
} characters. Basically, this
1167 is equivalent to calling
\helpref{GetWriteBuf
}{wxstringgetwritebuf
} and
1170 \membersection{wxStringBuffer::
\destruct{wxStringBuffer
}}
1172 \func{}{\destruct{wxStringBuffer
}}{\void}
1174 Restores the string passed to the constructor to the usable state by calling
1175 \helpref{UngetWriteBuf
}{wxstringungetwritebuf
} on it.
1177 \membersection{wxStringBuffer::operator wxChar *
}
1179 \constfunc{wxChar *
}{operator wxChar *
}{\void}
1181 Returns the writable pointer to a buffer of the size at least equal to the
1182 length specified in the constructor.