]>
git.saurik.com Git - wxWidgets.git/blob - interface/string.h
fc578521721a68c28ad6bbda72ad20a9a9d1a4f9
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxStringBuffer class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This tiny class allows to conveniently access the wxString
14 internal buffer as a writable pointer without any risk of forgetting to restore
15 the string to the usable state later.
17 For example, assuming you have a low-level OS function called
18 @c GetMeaningOfLifeAsString(char *) returning the value in the provided
19 buffer (which must be writable, of course) you might call it like this:
23 GetMeaningOfLifeAsString(wxStringBuffer(theAnswer, 1024));
24 if ( theAnswer != "42" )
26 wxLogError("Something is very wrong!");
30 Note that the exact usage of this depends on whether on not wxUSE_STL is
32 wxUSE_STL is enabled, wxStringBuffer creates a separate empty character buffer,
34 if wxUSE_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same
36 wxString uses intact. In other words, relying on wxStringBuffer containing the
38 wxString data is probably not a good idea if you want to build your program in
40 with and without wxUSE_STL.
49 Constructs a writable string buffer object associated with the given string
50 and containing enough space for at least @a len characters. Basically, this
51 is equivalent to calling wxString::GetWriteBuf and
54 wxStringBuffer(const wxString
& str
, size_t len
);
57 Restores the string passed to the constructor to the usable state by calling
58 wxString::UngetWriteBuf on it.
63 Returns the writable pointer to a buffer of the size at least equal to the
64 length specified in the constructor.
66 wxChar
* operator wxChar
*();
74 wxString is a class representing a character string. Please see the
75 @ref overview_wxstringoverview "wxString overview" for more information about
78 As explained there, wxString implements most of the methods of the std::string
80 These standard functions are not documented in this manual, please see the
82 The behaviour of all these functions is identical to the behaviour described
85 You may notice that wxString sometimes has many functions which do the same
86 thing like, for example, wxString::Length,
87 wxString::Len and @c length() which all return the string
88 length. In all cases of such duplication the @c std::string-compatible
89 method (@c length() in this case, always the lowercase version) should be
90 used as it will ensure smoother transition to @c std::string when wxWidgets
91 starts using it instead of wxString.
101 @ref overview_wxstringoverview "wxString overview", @ref overview_unicode
109 Initializes the string from first @a nLength characters of C string.
110 The default value of @c wxSTRING_MAXLEN means take all the string.
111 In Unicode build, @e conv's
112 wxMBConv::MB2WC method is called to
113 convert @a psz to wide string (the default converter uses current locale's
114 charset). It is ignored in ANSI build.
116 @see @ref overview_mbconvclasses "wxMBConv classes", @ref mbstr()
117 mb_str, @ref wcstr() wc_str
120 wxString(const wxString
& x
);
121 wxString(wxChar ch
, size_t n
= 1);
122 wxString(const wxChar
* psz
, size_t nLength
= wxSTRING_MAXLEN
);
123 wxString(const unsigned char* psz
,
124 size_t nLength
= wxSTRING_MAXLEN
);
125 wxString(const wchar_t* psz
, const wxMBConv
& conv
,
126 size_t nLength
= wxSTRING_MAXLEN
);
127 wxString(const char* psz
, const wxMBConv
& conv
= wxConvLibc
,
128 size_t nLength
= wxSTRING_MAXLEN
);
132 String destructor. Note that this is not virtual, so wxString must not be
138 Gets all the characters after the first occurrence of @e ch.
139 Returns the empty string if @a ch is not found.
141 wxString
AfterFirst(wxChar ch
) const;
144 Gets all the characters after the last occurrence of @e ch.
145 Returns the whole string if @a ch is not found.
147 wxString
AfterLast(wxChar ch
) const;
150 Preallocate enough space for wxString to store @a nLen characters. This function
151 may be used to increase speed when the string is constructed by repeated
154 because it will avoid the need to reallocate string memory many times (in case
155 of long strings). Note that it does not set the maximal length of a string - it
156 will still expand if more than @a nLen characters are stored in it. Also, it
157 does not truncate the existing string (use
158 Truncate() for this) even if its current length is
161 void Alloc(size_t nLen
);
165 Concatenates character @a ch to this string, @a count times, returning a
169 wxString
Append(const wxChar
* psz
);
170 wxString
Append(wxChar ch
, int count
= 1);
174 Gets all characters before the first occurrence of @e ch.
175 Returns the whole string if @a ch is not found.
177 wxString
BeforeFirst(wxChar ch
) const;
180 Gets all characters before the last occurrence of @e ch.
181 Returns the empty string if @a ch is not found.
183 wxString
BeforeLast(wxChar ch
) const;
186 The MakeXXX() variants modify the string in place, while the other functions
187 return a new string which contains the original text converted to the upper or
188 lower case and leave the original string unchanged.
200 Many functions in this section take a character index in the string. As with C
201 strings and/or arrays, the indices start from 0, so the first character of a
202 string is string[0]. Attempt to access a character beyond the end of the
203 string (which may be even 0 if the string is empty) will provoke an assert
204 failure in @ref overview_debuggingoverview "debug build", but no checks are
207 This section also contains both implicit and explicit conversions to C style
208 strings. Although implicit conversion is quite convenient, it is advised to use
209 explicit @ref cstr() c_str method for the sake of clarity. Also
210 see overview for the cases where it is necessary to
220 @ref operatorbracket() "operator []"
230 @ref operatorconstcharpt() "operator const char*"
235 Empties the string and frees memory occupied by it.
242 Case-sensitive comparison.
243 Returns a positive value if the string is greater than the argument, zero if
244 it is equal to it or a negative value if it is less than the argument (same
246 as the standard @e strcmp() function).
247 See also CmpNoCase(), IsSameAs().
249 int Cmp(const wxString
& s
) const;
250 const int Cmp(const wxChar
* psz
) const;
255 Case-insensitive comparison.
256 Returns a positive value if the string is greater than the argument, zero if
257 it is equal to it or a negative value if it is less than the argument (same
259 as the standard @e strcmp() function).
260 See also Cmp(), IsSameAs().
262 int CmpNoCase(const wxString
& s
) const;
263 const int CmpNoCase(const wxChar
* psz
) const;
267 Case-sensitive comparison. Returns 0 if equal, 1 if greater or -1 if less.
268 This is a wxWidgets 1.xx compatibility function; use Cmp() instead.
270 int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const;
273 The default comparison function Cmp() is case-sensitive and
274 so is the default version of IsSameAs(). For case
275 insensitive comparisons you should use CmpNoCase() or
276 give a second parameter to IsSameAs. This last function is may be more
277 convenient if only equality of the strings matters because it returns a boolean
278 @true value if the strings are the same and not 0 (which is usually @false in
281 Matches() is a poor man's regular expression matcher:
282 it only understands '*' and '?' metacharacters in the sense of DOS command line
284 StartsWith() is helpful when parsing a line of
285 text which should start with some predefined prefix and is more efficient than
286 doing direct string comparison as you would also have to precalculate the
287 length of the prefix then.
306 bool operator ==(const wxString
& x
, const wxString
& y
);
307 bool operator ==(const wxString
& x
, const wxChar
* t
);
308 bool operator !=(const wxString
& x
, const wxString
& y
);
309 bool operator !=(const wxString
& x
, const wxChar
* t
);
310 bool operator(const wxString
& x
, const wxString
& y
);
311 bool operator(const wxString
& x
, const wxChar
* t
);
312 bool operator =(const wxString
& x
, const wxString
& y
);
313 bool operator =(const wxString
& x
, const wxChar
* t
);
314 bool operator(const wxString
& x
, const wxString
& y
);
315 bool operator(const wxString
& x
, const wxChar
* t
);
316 bool operator =(const wxString
& x
, const wxString
& y
);
317 bool operator =(const wxString
& x
, const wxChar
* t
);
321 Anything may be concatenated (appended to) with a string. However, you can't
322 append something to a C string (including literal constants), so to do this it
323 should be converted to a wxString first.
324 @ref operatorout() "operator "
326 @ref plusequal() "operator +="
328 @ref operatorplus() "operator +"
337 A string may be constructed either from a C string, (some number of copies of)
338 a single character or a wide (UNICODE) string. For all constructors (except the
339 default which creates an empty string) there is also a corresponding assignment
341 @ref construct() wxString
343 @ref operatorassign() "operator ="
345 @ref destruct() ~wxString
350 Returns @true if target appears anywhere in wxString; else @false.
351 This is a wxWidgets 1.xx compatibility function; you should not use it in new
354 bool Contains(const wxString
& str
) const;
357 The string provides functions for conversion to signed and unsigned integer and
358 floating point numbers. All three functions take a pointer to the variable to
359 put the numeric value in and return @true if the @b entire string could be
360 converted to a number.
374 Makes the string empty, but doesn't free memory occupied by the string.
380 This function can be used to test if the string ends with the specified
381 @e suffix. If it does, the function will return @true and put the
382 beginning of the string before the suffix into @a rest string if it is not
383 @NULL. Otherwise, the function returns @false and doesn't
386 bool EndsWith(const wxString
& suffix
, wxString rest
= NULL
) const;
390 Searches for the given string. Returns the starting index, or @c wxNOT_FOUND if
393 int Find(wxUniChar ch
, bool fromEnd
= false) const;
394 const int Find(const wxString
& sub
) const;
400 This is a wxWidgets 1.xx compatibility function; you should not use it in new
403 int First(wxChar c
) const;
404 int First(const wxChar
* psz
) const;
405 const int First(const wxString
& str
) const;
409 This static function returns the string containing the result of calling
410 Printf() with the passed parameters on it.
412 @see FormatV(), Printf()
414 static wxString
Format(const wxChar format
, ...);
417 This static function returns the string containing the result of calling
418 PrintfV() with the passed parameters on it.
420 @see Format(), PrintfV()
422 static wxString
FormatV(const wxChar format
, va_list argptr
);
425 Returns the number of occurrences of @a ch in the string.
426 This is a wxWidgets 1.xx compatibility function; you should not use it in new
429 int Freq(wxChar ch
) const;
433 Converts given buffer of binary data from 8-bit string to wxString. In Unicode
434 build, the string is interpreted as being in ISO-8859-1 encoding. The version
435 without @a len parameter takes NUL-terminated data.
436 This is a convenience method useful when storing binary data in wxString.
437 This function is new since wxWidgets version 2.8.4
439 @see wxString::To8BitData
441 static wxString
From8BitData(const char* buf
, size_t len
);
442 static wxString
From8BitData(const char* buf
);
447 Converts the string or character from an ASCII, 7-bit form
448 to the native wxString representation. Most useful when using
449 a Unicode build of wxWidgets (note the use of @c char instead of @c wxChar).
450 Use @ref construct() "wxString constructors" if you
451 need to convert from another charset.
453 static wxString
FromAscii(const char* s
);
454 static wxString
FromAscii(const unsigned char* s
);
455 static wxString
FromAscii(const char* s
, size_t len
);
456 static wxString
FromAscii(const unsigned char* s
, size_t len
);
457 static wxString
FromAscii(char c
);
462 Converts C string encoded in UTF-8 to wxString.
463 Note that this method assumes that @a s is a valid UTF-8 sequence and
464 doesn't do any validation in release builds, it's validity is only checked in
467 static wxString
FromUTF8(const char* s
);
468 static wxString
FromUTF8(const char* s
, size_t len
);
472 Returns the character at position @a n (read-only).
474 wxChar
GetChar(size_t n
) const;
477 wxWidgets compatibility conversion. Returns a constant pointer to the data in
480 const wxChar
* GetData() const;
483 Returns a reference to the character at position @e n.
485 wxChar
GetWritableChar(size_t n
);
488 Returns a writable buffer of at least @a len bytes.
489 It returns a pointer to a new memory block, and the
490 existing data will not be copied.
491 Call UngetWriteBuf() as soon as
492 possible to put the string back into a reasonable state.
493 This method is deprecated, please use
495 wxStringBufferLength instead.
497 wxChar
* GetWriteBuf(size_t len
);
502 This is a wxWidgets 1.xx compatibility function; you should not use it in new
505 size_t Index(wxChar ch
) const;
506 const size_t Index(const wxChar
* sz
) const;
510 Returns @true if the string contains only ASCII characters.
511 This is a wxWidgets 1.xx compatibility function; you should not use it in new
514 bool IsAscii() const;
517 Returns @true if the string is empty.
519 bool IsEmpty() const;
522 Returns @true if the string is empty (same as wxString::IsEmpty).
523 This is a wxWidgets 1.xx compatibility function; you should not use it in new
529 Returns @true if the string is an integer (with possible sign).
530 This is a wxWidgets 1.xx compatibility function; you should not use it in new
533 bool IsNumber() const;
537 Test whether the string is equal to the single character @e c. The test is
538 case-sensitive if @a caseSensitive is @true (default) or not if it is @c
540 Returns @true if the string is equal to the character, @false otherwise.
541 See also Cmp(), CmpNoCase()
543 bool IsSameAs(const wxChar
* psz
, bool caseSensitive
= true) const;
544 const bool IsSameAs(wxChar c
, bool caseSensitive
= true) const;
548 Returns @true if the string is a word.
549 This is a wxWidgets 1.xx compatibility function; you should not use it in new
556 Returns a reference to the last character (writable).
557 This is a wxWidgets 1.xx compatibility function; you should not use it in new
565 Returns the first @a count characters of the string.
567 wxString
Left(size_t count
) const;
570 Returns the length of the string.
575 Returns the length of the string (same as Len).
576 This is a wxWidgets 1.xx compatibility function; you should not use it in new
579 size_t Length() const;
582 Returns this string converted to the lower case.
584 wxString
Lower() const;
588 This is a wxWidgets 1.xx compatibility function; you should not use it in new
594 Converts all characters to lower case and returns the result.
596 wxString
MakeLower();
599 Converts all characters to upper case and returns the result.
601 wxString
MakeUpper();
604 Returns @true if the string contents matches a mask containing '*' and '?'.
606 bool Matches(const wxString
& mask
) const;
609 These are "advanced" functions and they will be needed quite rarely.
610 Alloc() and Shrink() are only
611 interesting for optimization purposes.
613 and wxStringBufferLength classes may be very
614 useful when working with some external API which requires the caller to provide
627 Returns a substring starting at @e first, with length @e count, or the rest of
628 the string if @a count is the default value.
630 wxString
Mid(size_t first
, size_t count
= wxSTRING_MAXLEN
) const;
633 Other string functions.
643 Adds @a count copies of @a pad to the beginning, or to the end of the string
645 Removes spaces from the left or from the right (default).
647 wxString
Pad(size_t count
, wxChar pad
= ' ',
648 bool fromRight
= true);
651 Prepends @a str to this string, returning a reference to this string.
653 wxString
Prepend(const wxString
& str
);
656 Similar to the standard function @e sprintf(). Returns the number of
657 characters written, or an integer less than zero on error.
658 Note that if @c wxUSE_PRINTF_POS_PARAMS is set to 1, then this function supports
659 Unix98-style positional parameters:
661 @b NB: This function will use a safe version of @e vsprintf() (usually called
662 @e vsnprintf()) whenever available to always allocate the buffer of correct
663 size. Unfortunately, this function is not available on all platforms and the
664 dangerous @e vsprintf() will be used then which may lead to buffer overflows.
666 int Printf(const wxChar
* pszFormat
, ...);
669 Similar to vprintf. Returns the number of characters written, or an integer
673 int PrintfV(const wxChar
* pszFormat
, va_list argPtr
);
677 Removes @a len characters from the string, starting at @e pos.
678 This is a wxWidgets 1.xx compatibility function; you should not use it in new
681 wxString
Remove(size_t pos
);
682 wxString
Remove(size_t pos
, size_t len
);
686 Removes the last character.
688 wxString
RemoveLast();
691 Replace first (or all) occurrences of substring with another one.
692 @e replaceAll: global replace (default), or only the first occurrence.
693 Returns the number of replacements made.
695 size_t Replace(const wxString
& strOld
, const wxString
& strNew
,
696 bool replaceAll
= true);
699 Returns the last @a count characters.
701 wxString
Right(size_t count
) const;
704 These functions replace the standard @e strchr() and @e strstr()
713 Sets the character at position @e n.
715 void SetChar(size_t n
, wxChar ch
);
718 Minimizes the string's memory. This can be useful after a call to
719 Alloc() if too much memory were preallocated.
724 This function can be used to test if the string starts with the specified
725 @e prefix. If it does, the function will return @true and put the rest
726 of the string (i.e. after the prefix) into @a rest string if it is not
727 @NULL. Otherwise, the function returns @false and doesn't modify the
730 bool StartsWith(const wxString
& prefix
, wxString rest
= NULL
) const;
733 These functions return the string length and check whether the string is empty
739 @ref operatornot() operator!
748 Strip characters at the front and/or end. The same as Trim except that it
749 doesn't change this string.
750 This is a wxWidgets 1.xx compatibility function; you should not use it in new
753 wxString
Strip(stripType s
= trailing
) const;
756 Returns the part of the string between the indices @a from and @e to
758 This is a wxWidgets 1.xx compatibility function, use Mid()
759 instead (but note that parameters have different meaning).
761 wxString
SubString(size_t from
, size_t to
) const;
764 These functions allow to extract substring from this string. All of them don't
765 modify the original string and return a new string containing the extracted
769 @ref operatorparenth() operator
791 Converts the string to an 8-bit string in ISO-8859-1 encoding in the form of
792 a wxCharBuffer (Unicode builds only).
793 This is a convenience method useful when storing binary data in wxString.
794 This function is new since wxWidgets version 2.8.4
796 @see wxString::From8BitData
798 const char* To8BitData() const;
799 const const wxCharBuffer
To8BitData() const;
804 Converts the string to an ASCII, 7-bit string in the form of
805 a wxCharBuffer (Unicode builds only) or a C string (ANSI builds).
806 Note that this conversion only works if the string contains only ASCII
807 characters. The @ref mbstr() mb_str method provides more
808 powerful means of converting wxString to C string.
810 const char* ToAscii() const;
811 const const wxCharBuffer
ToAscii() const;
815 Attempts to convert the string to a floating point number. Returns @true on
816 success (the number is stored in the location pointed to by @e val) or @false
817 if the string does not represent such number (the value of @a val is not
818 modified in this case).
820 @see ToLong(), ToULong()
822 bool ToDouble(double val
) const;
825 Attempts to convert the string to a signed integer in base @e base. Returns
826 @true on success in which case the number is stored in the location
827 pointed to by @a val or @false if the string does not represent a
828 valid number in the given base (the value of @a val is not modified
830 The value of @a base must be comprised between 2 and 36, inclusive, or
831 be a special value 0 which means that the usual rules of @c C numbers are
832 applied: if the number starts with @c 0x it is considered to be in base
833 16, if it starts with @c 0 - in base 8 and in base 10 otherwise. Note
834 that you may not want to specify the base 0 if you are parsing the numbers
835 which may have leading zeroes as they can yield unexpected (to the user not
836 familiar with C) results.
838 @see ToDouble(), ToULong()
840 bool ToLong(long val
, int base
= 10) const;
843 This is exactly the same as ToLong() but works with 64
845 Notice that currently it doesn't work (always returns @false) if parsing of 64
846 bit numbers is not supported by the underlying C run-time library. Compilers
847 with C99 support and Microsoft Visual C++ version 7 and higher do support this.
849 @see ToLong(), ToULongLong()
851 bool ToLongLong(wxLongLong_t val
, int base
= 10) const;
854 Attempts to convert the string to an unsigned integer in base @e base.
855 Returns @true on success in which case the number is stored in the
856 location pointed to by @a val or @false if the string does not
857 represent a valid number in the given base (the value of @a val is not
858 modified in this case). Please notice that this function
859 behaves in the same way as the standard @c strtoul() and so it simply
860 converts negative numbers to unsigned representation instead of rejecting them
861 (e.g. -1 is returned as @c ULONG_MAX).
862 See ToLong() for the more detailed
863 description of the @a base parameter.
865 @see ToDouble(), ToLong()
867 bool ToULong(unsigned long val
, int base
= 10) const;
870 This is exactly the same as ToULong() but works with 64
872 Please see ToLongLong() for additional remarks.
874 bool ToULongLong(wxULongLong_t val
, int base
= 10) const;
878 Same as @ref wxString::utf8str utf8_str.
880 const char* ToUTF8() const;
881 const const wxCharBuffer
ToUF8() const;
885 Removes white-space (space, tabs, form feed, newline and carriage return) from
886 the left or from the right end of the string (right is default).
888 wxString
Trim(bool fromRight
= true);
891 Truncate the string to the given length.
893 wxString
Truncate(size_t len
);
897 Puts the string back into a reasonable state (in which it can be used
899 GetWriteBuf() was called.
900 The version of the function without the @a len parameter will calculate the
901 new string length itself assuming that the string is terminated by the first
902 @c NUL character in it while the second one will use the specified length
903 and thus is the only version which should be used with the strings with
904 embedded @c NULs (it is also slightly more efficient as @c strlen()
905 doesn't have to be called).
906 This method is deprecated, please use
908 wxStringBufferLength instead.
910 void UngetWriteBuf();
911 void UngetWriteBuf(size_t len
);
915 Returns this string converted to upper case.
917 wxString
Upper() const;
920 The same as MakeUpper.
921 This is a wxWidgets 1.xx compatibility function; you should not use it in new
927 Both formatted versions (wxString::Printf) and stream-like
928 insertion operators exist (for basic types only). Additionally, the
929 Format() function allows to use simply append
930 formatted value to a string:
940 @ref operatorout() "operator "
945 Returns a pointer to the string data (@c const char* in ANSI build,
946 @c const wchar_t* in Unicode build).
947 Note that the returned value is not convertible to @c char* or
948 @c wchar_t*, use @ref charstr() char_str or
949 @ref wcharstr() wchar_string if you need to pass string value
950 to a function expecting non-const pointer.
952 @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref
953 fnstr() fn_str, @ref charstr() char_str, @ref
954 wcharstr() wchar_string
956 const wxChar
* c_str() const;
959 Returns an object with string data that is implicitly convertible to
960 @c char* pointer. Note that any change to the returned buffer is lost and so
961 this function is only usable for passing strings to legacy libraries that
962 don't have const-correct API. Use wxStringBuffer if
963 you want to modify the string.
965 @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref
966 fnstr() fn_str, @ref cstr() c_str, @ref
969 wxWritableCharBuffer
char_str(const wxMBConv
& conv
= wxConvLibc
) const;
973 Returns string representation suitable for passing to OS' functions for
974 file handling. In ANSI build, this is same as @ref cstr() c_str.
975 In Unicode build, returned value can be either wide character string
976 or C string in charset matching the @c wxConvFileName object, depending on
979 @see wxMBConv, @ref wcstr() wc_str, @ref wcstr() mb_str
981 const wchar_t* fn_str() const;
982 const const char* fn_str() const;
983 const const wxCharBuffer
fn_str() const;
988 Returns multibyte (C string) representation of the string.
989 In Unicode build, converts using @e conv's wxMBConv::cWC2MB
990 method and returns wxCharBuffer. In ANSI build, this function is same
991 as @ref cstr() c_str.
992 The macro wxWX2MBbuf is defined as the correct return type (without const).
994 @see wxMBConv, @ref cstr() c_str, @ref wcstr() wc_str, @ref
995 fnstr() fn_str, @ref charstr() char_str
997 const char* mb_str(const wxMBConv
& conv
= wxConvLibc
) const;
998 const const wxCharBuffer
mb_str(const wxMBConv
& conv
= wxConvLibc
) const;
1002 Extraction from a stream.
1004 friend istream
operator(istream
& is
, wxString
& str
);
1008 These functions work as C++ stream insertion operators: they insert the given
1009 value into the string. Precision or format cannot be set using them, you can
1013 wxString
operator(const wxString
& str
);
1014 wxString
operator(const wxChar
* psz
);
1015 wxString
operator(wxChar ch
);
1016 wxString
operator(int i
);
1017 wxString
operator(float f
);
1018 wxString
operator(double d
);
1022 Same as Mid (substring extraction).
1024 wxString
operator ()(size_t start
, size_t len
);
1028 Concatenation: all these operators return a new string equal to the
1029 concatenation of the operands.
1031 wxString
operator +(const wxString
& x
, const wxString
& y
);
1032 wxString
operator +(const wxString
& x
, const wxChar
* y
);
1033 wxString
operator +(const wxString
& x
, wxChar y
);
1034 wxString
operator +(const wxChar
* x
, const wxString
& y
);
1039 Concatenation in place: the argument is appended to the string.
1041 void operator +=(const wxString
& str
);
1042 void operator +=(const wxChar
* psz
);
1043 void operator +=(wxChar c
);
1048 Assignment: the effect of each operation is the same as for the corresponding
1049 constructor (see @ref construct() "wxString constructors").
1051 wxString
operator =(const wxString
& str
);
1052 wxString
operator =(const wxChar
* psz
);
1053 wxString
operator =(wxChar c
);
1060 wxChar
operator [](size_t i
) const;
1061 wxChar
operator [](size_t i
) const;
1062 const wxChar
operator [](int i
) const;
1063 wxChar
operator [](int i
) const;
1067 Implicit conversion to a C string.
1069 operator const wxChar
*() const;
1072 Empty string is @false, so !string will only return @true if the string is
1074 This allows the tests for @NULLness of a @e const wxChar * pointer and emptiness
1075 of the string to look the same in the code and makes it easier to port old code
1079 bool operator!() const;
1082 The supported functions are only listed here, please see any STL reference for
1083 their documentation.
1089 Converts the strings contents to UTF-8 and returns it either as a temporary
1090 wxCharBuffer object or as a pointer to the internal string contents in
1093 const char* utf8_str() const;
1094 const const wxCharBuffer
utf8_str() const;
1099 Returns wide character representation of the string.
1100 In ANSI build, converts using @e conv's wxMBConv::cMB2WC
1101 method and returns wxWCharBuffer. In Unicode build, this function is same
1102 as @ref cstr() c_str.
1103 The macro wxWX2WCbuf is defined as the correct return type (without const).
1105 @see wxMBConv, @ref cstr() c_str, @ref wcstr() mb_str, @ref
1106 fnstr() fn_str, @ref wcharstr() wchar_str
1108 const wchar_t* wc_str(const wxMBConv
& conv
) const;
1109 const const wxWCharBuffer
wc_str(const wxMBConv
& conv
) const;
1113 Returns an object with string data that is implicitly convertible to
1114 @c char* pointer. Note that changes to the returned buffer may or may
1115 not be lost (depending on the build) and so this function is only usable for
1116 passing strings to legacy libraries that don't have const-correct API. Use
1117 wxStringBuffer if you want to modify the string.
1119 @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref
1120 fnstr() fn_str, @ref cstr() c_str, @ref
1123 wxWritableWCharBuffer
wchar_str() const;
1126 These functions are deprecated, please consider using new wxWidgets 2.0
1127 functions instead of them (or, even better, std::string compatible variants).
1164 @class wxStringBufferLength
1167 This tiny class allows to conveniently access the wxString
1168 internal buffer as a writable pointer without any risk of forgetting to restore
1169 the string to the usable state later, and allows the user to set the internal
1170 length of the string.
1172 For example, assuming you have a low-level OS function called
1173 @c int GetMeaningOfLifeAsString(char *) copying the value in the provided
1174 buffer (which must be writable, of course), and returning the actual length
1175 of the string, you might call it like this:
1179 wxStringBuffer theAnswerBuffer(theAnswer, 1024);
1180 int nLength = GetMeaningOfLifeAsString(theAnswerBuffer);
1181 theAnswerBuffer.SetLength(nLength);
1182 if ( theAnswer != "42" )
1184 wxLogError("Something is very wrong!");
1188 Note that the exact usage of this depends on whether on not wxUSE_STL is
1190 wxUSE_STL is enabled, wxStringBuffer creates a separate empty character buffer,
1192 if wxUSE_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same
1194 wxString uses intact. In other words, relying on wxStringBuffer containing the
1196 wxString data is probably not a good idea if you want to build your program in
1198 with and without wxUSE_STL.
1200 Note that SetLength @c must be called before wxStringBufferLength destructs.
1205 class wxStringBufferLength
1209 Constructs a writable string buffer object associated with the given string
1210 and containing enough space for at least @a len characters. Basically, this
1211 is equivalent to calling wxString::GetWriteBuf and
1214 wxStringBufferLength(const wxString
& str
, size_t len
);
1217 Restores the string passed to the constructor to the usable state by calling
1218 wxString::UngetWriteBuf on it.
1220 ~wxStringBufferLength();
1223 Sets the internal length of the string referred to by wxStringBufferLength to
1224 @a nLength characters.
1225 Must be called before wxStringBufferLength destructs.
1227 void SetLength(size_t nLength
);
1230 Returns the writable pointer to a buffer of the size at least equal to the
1231 length specified in the constructor.
1233 wxChar
* operator wxChar
*();
1237 // ============================================================================
1238 // Global functions/macros
1239 // ============================================================================
1243 Converts its argument to string.
1244 See also: wxFromString.
1246 wxString
wxToString(const wxColour
& col
);
1247 wxString
wxToString(const wxFont
& col
);
1252 Converts string to the type of the second argument. Returns @true on success.
1253 See also: wxToString.
1255 bool wxFromString(const wxString
& str
, wxColour
* col
);
1256 bool wxFromString(const wxString
& str
, wxFont
* col
);