1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStringBuffer, wxString
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
13 The wxString class has been completely rewritten for wxWidgets 3.0
14 and this change was actually the main reason for the calling that
15 version wxWidgets 3.0.
17 wxString is a class representing a Unicode character string.
18 wxString uses @c std::basic_string internally (even if @c wxUSE_STL is not defined)
19 to store its content (unless this is not supported by the compiler or disabled
20 specifically when building wxWidgets) and it therefore inherits
21 many features from @c std::basic_string. (Note that most implementations of
22 @c std::basic_string are thread-safe and don't use reference counting.)
24 These @c std::basic_string standard functions are only listed here, but
25 they are not fully documented in this manual; see the STL documentation
26 (http://www.cppreference.com/wiki/string/start) for more info.
27 The behaviour of all these functions is identical to the behaviour
30 You may notice that wxString sometimes has several functions which do
31 the same thing like Length(), Len() and length() which all return the
32 string length. In all cases of such duplication the @c std::string
33 compatible methods should be used.
35 For informations about the internal encoding used by wxString and
36 for important warnings and advices for using it, please read
37 the @ref overview_string.
39 Since wxWidgets 3.0 wxString always stores Unicode strings, so you should
40 be sure to read also @ref overview_unicode.
43 @section string_index Index of the member groups
45 Links for quick access to the various categories of wxString functions:
46 - @ref_member_group{ctor, Constructors and assignment operators}
47 - @ref_member_group{length, Length functions}
48 - @ref_member_group{ch_access, Character access functions}
49 - @ref_member_group{conv, Conversions functions}
50 - @ref_member_group{concat, Concatenation functions}
51 - @ref_member_group{cmp, Comparison functions}
52 - @ref_member_group{substring, Substring extraction functions}
53 - @ref_member_group{caseconv, Case conversion functions}
54 - @ref_member_group{search, Searching and replacing functions}
55 - @ref_member_group{numconv, Conversion to numbers functions}
56 - @ref_member_group{fmt, Formatting and printing functions}
57 - @ref_member_group{mem, Memory management functions}
58 - @ref_member_group{misc, Miscellaneous functions}
59 - @ref_member_group{iter, Iterator interface functions}
60 - @ref_member_group{stl, STL interface functions}
69 @see @ref overview_string, @ref overview_unicode,
70 @ref group_funcmacro_string "String-related functions", wxUString,
71 wxCharBuffer, wxUniChar, wxStringTokenizer, wxStringBuffer, wxStringBufferLength
79 Types used with wxString.
82 typedef wxUniChar value_type
;
83 typedef wxUniChar char_type
;
84 typedef wxUniCharRef reference
;
85 typedef wxChar
* pointer
;
86 typedef const wxChar
* const_pointer
;
87 typedef size_t size_type
;
88 typedef wxUniChar const_reference
;
93 @member_group_name{ctor, Constructors and assignment operators}
95 A string may be constructed either from a C string, (some number of copies of)
96 a single character or a wide (Unicode) string. For all constructors (except the
97 default which creates an empty string) there is also a corresponding assignment
100 See also the assign() STL-like function.
110 Creates a string from another string.
111 Just increases the ref count by 1.
113 wxString(const wxString
& stringSrc
);
116 Construct a string consisting of @a nRepeat copies of ch.
118 wxString(wxUniChar ch
, size_t nRepeat
= 1);
121 Construct a string consisting of @a nRepeat copies of ch.
123 wxString(wxUniCharRef ch
, size_t nRepeat
= 1);
126 Construct a string consisting of @a nRepeat copies of ch
127 converted to Unicode using the current locale encoding.
129 wxString(char ch
, size_t nRepeat
= 1);
132 Construct a string consisting of @a nRepeat copies of ch.
134 wxString(wchar_t ch
, size_t nRepeat
= 1);
137 Constructs a string from the string literal @a psz using
138 the current locale encoding to convert it to Unicode (wxConvLibc).
140 wxString(const char *psz
);
143 Constructs a string from the string literal @a psz using
144 @a conv to convert it Unicode.
146 wxString(const char *psz
, const wxMBConv
& conv
);
149 Constructs a string from the first @a nLength character of the string literal @a psz using
150 the current locale encoding to convert it to Unicode (wxConvLibc).
152 wxString(const char *psz
, size_t nLength
);
155 Constructs a string from the first @a nLength character of the string literal @a psz using
156 @a conv to convert it Unicode.
158 wxString(const char *psz
, const wxMBConv
& conv
, size_t nLength
);
161 Constructs a string from the string literal @a pwz.
163 wxString(const wchar_t *pwz
);
166 Constructs a string from the first @a nLength characters of the string literal @a pwz.
168 wxString(const wchar_t *pwz
, size_t nLength
);
171 Constructs a string from @a buf using the using the current locale
172 encoding to convert it to Unicode.
174 wxString(const wxCharBuffer
& buf
);
177 Constructs a string from @a buf.
179 wxString(const wxWCharBuffer
& buf
);
182 Constructs a string from @a str using the using the current locale encoding
183 to convert it to Unicode (wxConvLibc).
187 wxString(const std::string
& str
);
190 Constructs a string from @a str.
194 wxString(const std::wstring
& str
);
199 Note that this is not virtual, so wxString must not be inherited from.
204 Assignment: see the relative wxString constructor.
206 wxString
operator =(const wxString
& str
);
209 Assignment: see the relative wxString constructor.
211 wxString
operator =(wxUniChar c
);
218 @member_group_name{length, String length}
220 These functions return the string length and/or check whether the string
223 See also the length(), size() or empty() STL-like functions.
229 Returns the length of the string.
234 Returns the length of the string (same as Len).
235 This is a wxWidgets 1.xx compatibility function; you should not use it in new
238 size_t Length() const;
241 Returns @true if the string is empty.
243 bool IsEmpty() const;
246 Returns @true if the string is empty (same as wxString::IsEmpty).
247 This is a wxWidgets 1.xx compatibility function; you should not use it in new
253 Empty string is @false, so !string will only return @true if the
258 bool operator!() const;
265 @member_group_name{ch_access, Character access}
267 Many functions below take a character index in the string.
268 As with C strings and arrays, the indices start from 0, so the first character
269 of a string is string[0]. An attempt to access a character beyond the end of the
270 string (which may even be 0 if the string is empty) will provoke an assert
271 failure in @ref overview_debugging "debug builds", but no checks are
272 done in release builds.
277 Returns the character at position @a n (read-only).
279 wxUniChar
GetChar(size_t n
) const;
282 wxWidgets compatibility conversion. Same as c_str().
284 const wxCStrData
GetData() const;
287 Returns a reference to the character at position @a n.
289 wxUniCharRef
GetWritableChar(size_t n
);
292 Returns a writable buffer of at least @a len bytes.
294 It returns a pointer to a new memory block, and the existing data will not be copied.
295 Call UngetWriteBuf() as soon as possible to put the string back into a reasonable state.
297 This method is deprecated, please use wxStringBuffer or wxStringBufferLength instead.
299 wxStringCharType
* GetWriteBuf(size_t len
);
302 Puts the string back into a reasonable state (in which it can be used
303 normally), after GetWriteBuf() was called.
305 The version of the function without the @a len parameter will calculate the
306 new string length itself assuming that the string is terminated by the first
307 @c NUL character in it while the second one will use the specified length
308 and thus is the only version which should be used with the strings with
309 embedded @c NULs (it is also slightly more efficient as @c strlen()
310 doesn't have to be called).
312 This method is deprecated, please use wxStringBuffer or wxStringBufferLength instead.
314 void UngetWriteBuf();
319 void UngetWriteBuf(size_t len
);
322 Sets the character at position @e n.
324 void SetChar(size_t n
, wxUniChar ch
);
327 Returns a the last character.
329 This is a wxWidgets 1.xx compatibility function;
330 you should not use it in new code.
332 wxUniChar
Last() const;
335 Returns a reference to the last character (writable).
337 This is a wxWidgets 1.xx compatibility function;
338 you should not use it in new code.
343 Returns the @a i-th character of the string.
345 wxUniChar
operator [](size_t i
) const;
348 Returns a writable reference to the @a i-th character of the string.
350 wxUniCharRef
operator [](size_t i
);
356 @member_group_name{conv, Conversions}
358 This section contains both implicit and explicit conversions to C style
359 strings. Although implicit conversion is quite convenient, you are advised
360 to use wc_str() for the sake of clarity.
365 Returns a lightweight intermediate class which is in turn implicitly
366 convertible to both @c const @c char* and to @c const @c wchar_t*.
367 Given this ambiguity it is mostly better to use wc_str(), mb_str() or
370 Please see the @ref overview_unicode for more information about it.
372 Note that the returned value is not convertible to @c char* or
373 @c wchar_t*, use char_str() or wchar_str() if you need to pass
374 string value to a function expecting non-const pointer.
376 @see wc_str(), utf8_str(), c_str(), mb_str(), fn_str()
378 wxCStrData
c_str() const;
381 Returns an object with string data that is implicitly convertible to
382 @c char* pointer. Note that any change to the returned buffer is lost and so
383 this function is only usable for passing strings to legacy libraries that
384 don't have const-correct API. Use wxStringBuffer if you want to modify
389 wxWritableCharBuffer
char_str(const wxMBConv
& conv
= wxConvLibc
) const;
392 Returns buffer of the specified type containing the string data.
394 This method is only useful in template code, otherwise you should
395 directly call mb_str() or wc_str() if you need to retrieve a narrow or
396 wide string from this wxString. The template parameter @a t should be
397 either @c char or @c wchar_t.
399 Notice that retrieving a char buffer in UTF-8 build will return the
400 internal string representation in UTF-8 while in wchar_t build the char
401 buffer will contain the conversion of the string to the encoding of the
402 current locale (and so can fail).
405 If non-@NULL, filled with the length of the returned buffer.
408 buffer containing the string contents in the specified type,
409 notice that it may be @NULL if the conversion failed (e.g. Unicode
410 string couldn't be converted to the current encoding when @a T is
413 template <typename T
>
414 wxCharTypeBuffer
<T
> tchar_str(size_t *len
= NULL
) const;
417 Returns a string representation suitable for passing to OS' functions
420 const wchar_t* fn_str() const;
425 const char* fn_str() const;
430 const wxCharBuffer
fn_str() const;
433 Returns the multibyte (C string) representation of the string
434 using @e conv's wxMBConv::cWC2MB method and returns wxCharBuffer.
436 @see wc_str(), utf8_str(), c_str(), wxMBConv
438 const wxCharBuffer
mb_str(const wxMBConv
& conv
= wxConvLibc
) const;
441 Converts the strings contents to UTF-8 and returns it either as a
442 temporary wxCharBuffer object or as a pointer to the internal
443 string contents in UTF-8 build.
445 @see wc_str(), c_str(), mb_str()
447 const wxScopedCharBuffer
utf8_str() const;
450 Converts the strings contents to the wide character represention
451 and returns it as a temporary wxWCharBuffer object (Unix and OS X)
452 or returns a pointer to the internal string contents in wide character
455 The macro wxWX2WCbuf is defined as the correct return type (without const).
457 @see utf8_str(), c_str(), mb_str(), fn_str(), wchar_str()
459 const wchar_t* wc_str() const;
464 const wxWCharBuffer
wc_str() const;
467 Returns an object with string data that is implicitly convertible to
468 @c char* pointer. Note that changes to the returned buffer may or may
469 not be lost (depending on the build) and so this function is only usable for
470 passing strings to legacy libraries that don't have const-correct API. Use
471 wxStringBuffer if you want to modify the string.
473 @see mb_str(), wc_str(), fn_str(), c_str(), char_str()
475 wxWritableWCharBuffer
wchar_str() const;
478 Explicit conversion to C string in the internal representation (either
479 wchar_t* or UTF-8-encoded char*, depending on the build).
481 const wxStringCharType
*wx_str() const;
484 Converts the string to an 8-bit string in ISO-8859-1 encoding in the
485 form of a wxCharBuffer (Unicode builds only).
487 This is a convenience method useful when storing binary data in
488 wxString. It should be used @em only for this purpose. It is only valid
489 to call this method on strings created using From8BitData().
493 @see wxString::From8BitData()
495 const wxScopedCharBuffer
To8BitData() const;
498 Converts the string to an ASCII, 7-bit string in the form of
499 a wxCharBuffer (Unicode builds only) or a C string (ANSI builds).
500 Note that this conversion only works if the string contains only ASCII
501 characters. The @ref mb_str() "mb_str" method provides more
502 powerful means of converting wxString to C string.
504 const char* ToAscii() const;
509 const wxCharBuffer
ToAscii() const;
512 Return the string as an std::string in current locale encoding.
514 Note that if the conversion of (Unicode) string contents to the current
515 locale fails, the return string will be empty. Be sure to check for
516 this to avoid silent data loss.
518 Instead of using this function it's also possible to write
523 s = std::string(wxs);
525 but using ToStdString() may make the code more clear.
529 std::string
ToStdString() const;
532 Return the string as an std::wstring.
534 Unlike ToStdString(), there is no danger of data loss when using this
539 std::wstring
ToStdWstring() const;
544 const wxScopedCharBuffer
ToUTF8() const;
550 @member_group_name{concat, Concatenation}
552 Almost anything may be concatenated (appended to) with a string!
554 Note that the various operator<<() overloads work as C++ stream insertion
555 operators. They insert the given value into the string.
556 Precision and format cannot be set using them. Use Printf() instead.
558 See also the insert() and append() STL-like functions.
563 Appends the string literal @a psz.
565 wxString
& Append(const char* psz
);
568 Appends the wide string literal @a pwz.
570 wxString
& Append(const wchar_t* pwz
);
573 Appends the string literal @a psz with max length @a nLen.
575 wxString
& Append(const char* psz
, size_t nLen
);
578 Appends the wide string literal @a psz with max length @a nLen.
580 wxString
& Append(const wchar_t* pwz
, size_t nLen
);
583 Appends the string @a s.
585 wxString
& Append(const wxString
& s
);
588 Appends the character @a ch @a count times.
590 wxString
&Append(wxUniChar ch
, size_t count
= 1u);
593 Prepends @a str to this string, returning a reference to this string.
595 wxString
& Prepend(const wxString
& str
);
598 Concatenation: returns a new string equal to the concatenation of the operands.
600 wxString
operator +(const wxString
& x
, const wxString
& y
);
605 wxString
operator +(const wxString
& x
, wxUniChar y
);
607 wxString
& operator<<(const wxString
& s
);
608 wxString
& operator<<(const char* psz
);
609 wxString
& operator<<(const wchar_t* pwz
);
610 wxString
& operator<<(const wxCStrData
& psz
);
611 wxString
& operator<<(char ch
);
612 wxString
& operator<<(unsigned char ch
);
613 wxString
& operator<<(wchar_t ch
);
614 wxString
& operator<<(const wxCharBuffer
& s
);
615 wxString
& operator<<(const wxWCharBuffer
& s
);
616 wxString
& operator<<(wxUniChar ch
);
617 wxString
& operator<<(wxUniCharRef ch
);
618 wxString
& operator<<(unsigned int ui
);
619 wxString
& operator<<(long l
);
620 wxString
& operator<<(unsigned long ul
);
621 wxString
& operator<<(wxLongLong_t ll
);
622 wxString
& operator<<(wxULongLong_t ul
);
623 wxString
& operator<<(float f
);
624 wxString
& operator<<(double d
);
627 Concatenation in place: the argument is appended to the string.
629 void operator +=(const wxString
& str
);
634 void operator +=(wxUniChar c
);
640 @member_group_name{cmp, Comparison}
642 The default comparison function Cmp() is case-sensitive and so is the default
643 version of IsSameAs(). For case insensitive comparisons you should use CmpNoCase()
644 or give a second parameter to IsSameAs(). This last function is maybe more
645 convenient if only equality of the strings matters because it returns a boolean
646 @true value if the strings are the same and not 0 (which is usually @false
649 Matches() is a poor man's regular expression matcher: it only understands
650 '*' and '?' metacharacters in the sense of DOS command line interpreter.
652 StartsWith() is helpful when parsing a line of text which should start
653 with some predefined prefix and is more efficient than doing direct string
654 comparison as you would also have to precalculate the length of the prefix.
656 See also the compare() STL-like function.
661 Case-sensitive comparison.
662 Returns a positive value if the string is greater than the argument,
663 zero if it is equal to it or a negative value if it is less than the
664 argument (same semantics as the standard @c strcmp() function).
666 @see CmpNoCase(), IsSameAs().
668 int Cmp(const wxString
& s
) const;
671 Case-insensitive comparison.
672 Returns a positive value if the string is greater than the argument,
673 zero if it is equal to it or a negative value if it is less than the
674 argument (same semantics as the standard @c strcmp() function).
676 @see Cmp(), IsSameAs().
678 int CmpNoCase(const wxString
& s
) const;
681 Test whether the string is equal to another string @a s.
683 The test is case-sensitive if @a caseSensitive is @true (default) or not if it is
686 @return @true if the string is equal to the other one, @false otherwise.
688 @see Cmp(), CmpNoCase()
690 bool IsSameAs(const wxString
& s
, bool caseSensitive
= true) const;
693 Test whether the string is equal to the single character @a ch.
695 The test is case-sensitive if @a caseSensitive is @true (default) or not if it is
698 @return @true if the string is equal to this character, @false otherwise.
700 @see Cmp(), CmpNoCase()
702 bool IsSameAs(wxUniChar ch
, bool caseSensitive
= true) const;
705 Returns @true if the string contents matches a mask containing '*' and '?'.
707 bool Matches(const wxString
& mask
) const;
710 This function can be used to test if the string starts with the specified
713 If it does, the function will return @true and put the rest of the string
714 (i.e. after the prefix) into @a rest string if it is not @NULL.
715 Otherwise, the function returns @false and doesn't modify the @a rest.
717 bool StartsWith(const wxString
& prefix
, wxString
*rest
= NULL
) const;
720 This function can be used to test if the string ends with the specified
721 @e suffix. If it does, the function will return @true and put the
722 beginning of the string before the suffix into @e rest string if it is not
723 @NULL. Otherwise, the function returns @false and doesn't
726 bool EndsWith(const wxString
& suffix
, wxString
*rest
= NULL
) const;
732 @member_group_name{substring, Substring extraction}
734 These functions allow you to extract a substring from the string. The
735 original string is not modified and the function returns the extracted
738 See also the at() and the substr() STL-like functions.
742 Returns a substring starting at @e first, with length @e count, or the rest of
743 the string if @a count is the default value.
745 wxString
Mid(size_t first
, size_t nCount
= wxString::npos
) const;
748 Returns the part of the string between the indices @a from and @a to
751 This is a wxWidgets 1.xx compatibility function, use Mid()
752 instead (but note that parameters have different meaning).
754 wxString
SubString(size_t from
, size_t to
) const;
757 Same as Mid() (substring extraction).
759 wxString
operator()(size_t start
, size_t len
) const;
762 Returns the first @a count characters of the string.
764 wxString
Left(size_t count
) const;
767 Returns the last @a count characters.
769 wxString
Right(size_t count
) const;
772 Gets all the characters after the first occurrence of @e ch.
773 Returns the empty string if @e ch is not found.
775 wxString
AfterFirst(wxUniChar ch
) const;
778 Gets all the characters after the last occurrence of @e ch.
779 Returns the whole string if @e ch is not found.
781 wxString
AfterLast(wxUniChar ch
) const;
784 Gets all characters before the first occurrence of @e ch.
785 Returns the whole string if @a ch is not found.
787 wxString
BeforeFirst(wxUniChar ch
) const;
790 Gets all characters before the last occurrence of @e ch.
791 Returns the empty string if @a ch is not found.
793 wxString
BeforeLast(wxUniChar ch
) const;
799 @member_group_name{caseconv, Case conversion}
801 The MakeXXX() variants modify the string in place, while the other functions
802 return a new string which contains the original text converted to the upper or
803 lower case and leave the original string unchanged.
808 Return the copy of the string with the first string character in the
809 upper case and the subsequent ones in the lower case.
813 @see MakeCapitalized()
815 wxString
Capitalize() const;
818 Returns this string converted to the lower case.
822 wxString
Lower() const;
826 This is a wxWidgets 1.xx compatibility function; you should not use it in new
832 Converts the first characters of the string to the upper case and all
833 the subsequent ones to the lower case and returns the result.
839 wxString
& MakeCapitalized();
842 Converts all characters to lower case and returns the reference to the
847 wxString
& MakeLower();
850 Converts all characters to upper case and returns the reference to the
855 wxString
& MakeUpper();
858 Returns this string converted to upper case.
862 wxString
Upper() const;
865 The same as MakeUpper().
867 This is a wxWidgets 1.xx compatibility function; you should not use it in new
876 @member_group_name{search, Searching and replacing}
878 These functions replace the standard @c strchr() and @c strstr()
881 See also the find(), rfind(), replace() STL-like functions.
886 Searches for the given character @a ch.
887 Returns the position or @c wxNOT_FOUND if not found.
889 int Find(wxUniChar ch
, bool fromEnd
= false) const;
892 Searches for the given string @a sub.
893 Returns the starting position or @c wxNOT_FOUND if not found.
895 int Find(const wxString
& sub
) const;
900 This is a wxWidgets 1.xx compatibility function;
901 you should not use it in new code.
903 int First(wxUniChar ch
) const;
908 This is a wxWidgets 1.xx compatibility function;
909 you should not use it in new code.
911 int First(const wxString
& str
) const;
914 Replace first (or all) occurrences of substring with another one.
917 The string to search for replacing.
919 The substitution string.
921 If @true a global replace will be done (default), otherwise only the
922 first occurrence will be replaced.
924 Returns the number of replacements made.
926 size_t Replace(const wxString
& strOld
, const wxString
& strNew
,
927 bool replaceAll
= true);
934 @member_group_name{numconv, Conversion to numbers}
936 The string provides functions for conversion to signed and unsigned integer and
937 floating point numbers.
939 All functions take a pointer to the variable to put the numeric value
940 in and return @true if the @b entire string could be converted to a
941 number. Notice if there is a valid number in the beginning of the
942 string, it is returned in the output parameter even if the function
943 returns @false because there is more text following it.
948 Attempts to convert the string to a floating point number.
950 Returns @true on success (the number is stored in the location pointed to by
951 @a val) or @false if the string does not represent such number (the value of
952 @a val may still be modified in this case).
954 Note that unlike ToCDouble() this function uses a localized version of
955 @c wxStrtod() and thus needs as decimal point (and thousands separator) the
956 locale-specific decimal point. Thus you should use this function only when
957 you are sure that this string contains a floating point number formatted with
958 the rules of the locale currently in use (see wxLocale).
960 Refer to the docs of the standard function @c strtod() for more details about
961 the supported syntax.
963 @see ToCDouble(), ToLong(), ToULong()
965 bool ToDouble(double* val
) const;
968 Variant of ToDouble() always working in "C" locale.
970 Works like ToDouble() but unlike it this function expects the floating point
971 number to be formatted always with the rules dictated by the "C" locale
972 (in particular, the decimal point must be a dot), independently from the
973 current application-wide locale (see wxLocale).
975 @see ToDouble(), ToLong(), ToULong()
977 bool ToCDouble(double* val
) const;
980 Attempts to convert the string to a signed integer in base @a base.
982 Returns @true on success in which case the number is stored in the location
983 pointed to by @a val or @false if the string does not represent a
984 valid number in the given base (the value of @a val may still be
985 modified in this case).
987 The value of @a base must be comprised between 2 and 36, inclusive, or
988 be a special value 0 which means that the usual rules of @c C numbers are
989 applied: if the number starts with @c 0x it is considered to be in base
990 16, if it starts with @c 0 - in base 8 and in base 10 otherwise. Note
991 that you may not want to specify the base 0 if you are parsing the numbers
992 which may have leading zeroes as they can yield unexpected (to the user not
993 familiar with C) results.
995 Note that unlike ToCLong() this function uses a localized version of
996 @c wxStrtol(). Thus you should use this function only when you are sure
997 that this string contains an integer number formatted with
998 the rules of the locale currently in use (see wxLocale).
1000 Refer to the docs of the standard function @c strtol() for more details about
1001 the supported syntax.
1003 @see ToCDouble(), ToDouble(), ToULong()
1005 bool ToLong(long* val
, int base
= 10) const;
1008 Variant of ToLong() always working in "C" locale.
1010 Works like ToLong() but unlike it this function expects the integer
1011 number to be formatted always with the rules dictated by the "C" locale,
1012 independently from the current application-wide locale (see wxLocale).
1014 @see ToDouble(), ToLong(), ToULong()
1016 bool ToCLong(long* val
, int base
= 10) const;
1019 This is exactly the same as ToLong() but works with 64 bit integer numbers.
1021 Notice that currently it doesn't work (always returns @false) if parsing of 64
1022 bit numbers is not supported by the underlying C run-time library. Compilers
1023 with C99 support and Microsoft Visual C++ version 7 and higher do support this.
1025 @see ToLong(), ToULongLong()
1027 bool ToLongLong(wxLongLong_t
* val
, int base
= 10) const;
1030 Attempts to convert the string to an unsigned integer in base @a base.
1032 Returns @true on success in which case the number is stored in the
1033 location pointed to by @a val or @false if the string does not
1034 represent a valid number in the given base (the value of @a val may
1035 still be modified in this case).
1037 Please notice that this function behaves in the same way as the standard
1038 @c strtoul() and so it simply converts negative numbers to unsigned
1039 representation instead of rejecting them (e.g. -1 is returned as @c ULONG_MAX).
1041 See ToLong() for the more detailed description of the @a base parameter
1042 (and of the locale-specific behaviour of this function).
1044 @see ToCULong(), ToDouble(), ToLong()
1046 bool ToULong(unsigned long* val
, int base
= 10) const;
1049 Variant of ToULong() always working in "C" locale.
1051 Works like ToULong() but unlike it this function expects the integer
1052 number to be formatted always with the rules dictated by the "C" locale,
1053 independently from the current application-wide locale (see wxLocale).
1055 @see ToDouble(), ToLong(), ToULong()
1057 bool ToCULong(unsigned long* val
, int base
= 10) const;
1060 This is exactly the same as ToULong() but works with 64 bit integer
1063 Please see ToLongLong() for additional remarks.
1065 bool ToULongLong(wxULongLong_t
* val
, int base
= 10) const;
1071 @member_group_name{fmt, Formatting and printing}
1073 Both formatted versions (Printf/() and stream-like insertion operators
1074 exist (for basic types only).
1076 See also the static Format() and FormatV() functions.
1081 Similar to the standard function @e sprintf(). Returns the number of
1082 characters written, or an integer less than zero on error.
1083 Note that if @c wxUSE_PRINTF_POS_PARAMS is set to 1, then this function supports
1084 Unix98-style positional parameters:
1089 str.Printf(wxT("%d %d %d"), 1, 2, 3);
1090 // str now contains "1 2 3"
1092 str.Printf(wxT("%2$d %3$d %1$d"), 1, 2, 3);
1093 // str now contains "2 3 1"
1096 @note This function will use a safe version of @e vsprintf() (usually called
1097 @e vsnprintf()) whenever available to always allocate the buffer of correct
1098 size. Unfortunately, this function is not available on all platforms and the
1099 dangerous @e vsprintf() will be used then which may lead to buffer overflows.
1101 int Printf(const wxString
& pszFormat
, ...);
1104 Similar to vprintf. Returns the number of characters written, or an integer
1108 int PrintfV(const wxString
& pszFormat
, va_list argPtr
);
1114 @member_group_name{mem, Memory management}
1116 The following are "advanced" functions and they will be needed rarely.
1117 Alloc() and Shrink() are only interesting for optimization purposes.
1118 wxStringBuffer and wxStringBufferLength classes may be very useful when working
1119 with some external API which requires the caller to provide a writable buffer.
1121 See also the reserve() and resize() STL-like functions.
1126 Preallocate enough space for wxString to store @a nLen characters.
1128 Please note that this method does the same thing as the standard
1129 reserve() one and shouldn't be used in new code.
1131 This function may be used to increase speed when the string is
1132 constructed by repeated concatenation as in
1135 // delete all vowels from the string
1136 wxString DeleteAllVowels(const wxString& original)
1140 size_t len = original.length();
1144 for ( size_t n = 0; n < len; n++ )
1146 if ( strchr("aeuio", tolower(original[n])) == NULL )
1147 result += original[n];
1154 because it will avoid the need to reallocate string memory many times
1155 (in case of long strings). Note that it does not set the maximal length
1156 of a string -- it will still expand if more than @a nLen characters are
1157 stored in it. Also, it does not truncate the existing string (use
1158 Truncate() for this) even if its current length is greater than @a nLen.
1160 @return @true if memory was successfully allocated, @false otherwise.
1162 bool Alloc(size_t nLen
);
1165 Minimizes the string's memory. This can be useful after a call to
1166 Alloc() if too much memory were preallocated.
1171 Returns a deep copy of the string.
1173 That is, the returned string is guaranteed to not share data with this
1174 string when using reference-counted wxString implementation.
1176 This method is primarily useful for passing strings between threads
1177 (because wxString is not thread-safe). Unlike creating a copy using
1178 @c wxString(c_str()), Clone() handles embedded NULs correctly.
1182 wxString
Clone() const;
1185 Empties the string and frees memory occupied by it.
1196 @member_group_name{misc, Miscellaneous}
1198 Miscellaneous other string functions.
1203 Returns @true if target appears anywhere in wxString; else @false.
1205 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1207 bool Contains(const wxString
& str
) const;
1210 Makes the string empty, but doesn't free memory occupied by the string.
1217 Returns the number of occurrences of @e ch in the string.
1219 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1221 int Freq(wxUniChar ch
) const;
1224 Returns @true if the string contains only ASCII characters.
1225 See wxUniChar::IsAscii for more details.
1227 This is a wxWidgets 1.xx compatibility function; you should not use it in new
1230 bool IsAscii() const;
1233 Returns @true if the string is an integer (with possible sign).
1235 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1237 bool IsNumber() const;
1240 Returns @true if the string is a word.
1242 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1244 bool IsWord() const;
1247 Adds @a count copies of @a chPad to the beginning, or to the end of the
1248 string (the default).
1250 Removes spaces from the left or from the right (default).
1252 wxString
& Pad(size_t count
, wxUniChar chPad
= ' ', bool fromRight
= true);
1255 Removes all characters from the string starting at @a pos.
1256 Use Truncate() as a more readable alternative.
1258 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1260 wxString
& Remove(size_t pos
);
1263 Removes @a len characters from the string, starting at @a pos.
1265 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1267 wxString
& Remove(size_t pos
, size_t len
);
1270 Removes the last character.
1272 wxString
& RemoveLast(size_t n
= 1);
1275 Strip characters at the front and/or end.
1277 This is the same as Trim() except that it doesn't change this string.
1279 This is a wxWidgets 1.xx compatibility function; you should not use it in new code.
1281 wxString
Strip(stripType s
= trailing
) const;
1284 Removes white-space (space, tabs, form feed, newline and carriage return) from
1285 the left or from the right end of the string (right is default).
1287 wxString
& Trim(bool fromRight
= true);
1290 Truncate the string to the given length.
1292 wxString
& Truncate(size_t len
);
1300 @member_group_name{iter, Iterator interface}
1302 These methods return iterators to the beginnnig or end of the string.
1304 Please see any STL reference (e.g. http://www.cppreference.com/wiki/string/start)
1305 for their documentation.
1309 const_iterator
begin() const;
1311 const_iterator
end() const;
1314 const_reverse_iterator
rbegin() const;
1315 reverse_iterator
rbegin();
1316 const_reverse_iterator
rend() const;
1317 reverse_iterator
rend();
1324 @member_group_name{stl, STL interface}
1326 The supported STL functions are listed here.
1328 Please see any STL reference (e.g. http://www.cppreference.com/wiki/string/start)
1329 for their documentation.
1333 wxString
& append(const wxString
& str
, size_t pos
, size_t n
);
1334 wxString
& append(const wxString
& str
);
1335 wxString
& append(const char *sz
, size_t n
);
1336 wxString
& append(const wchar_t *sz
, size_t n
);
1337 wxString
& append(size_t n
, wxUniChar ch
);
1338 wxString
& append(const_iterator first
, const_iterator last
);
1340 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
);
1341 wxString
& assign(const wxString
& str
);
1342 wxString
& assign(const char *sz
, size_t n
);
1343 wxString
& assign(const wchar_t *sz
, size_t n
);
1344 wxString
& assign(size_t n
, wxUniChar ch
);
1345 wxString
& assign(const_iterator first
, const_iterator last
);
1347 wxUniChar
at(size_t n
) const;
1348 wxUniCharRef
at(size_t n
);
1352 size_type
capacity() const;
1354 int compare(const wxString
& str
) const;
1355 int compare(size_t nStart
, size_t nLen
, const wxString
& str
) const;
1356 int compare(size_t nStart
, size_t nLen
,
1357 const wxString
& str
, size_t nStart2
, size_t nLen2
) const;
1358 int compare(size_t nStart
, size_t nLen
,
1359 const char* sz
, size_t nCount
= npos
) const;
1360 int compare(size_t nStart
, size_t nLen
,
1361 const wchar_t* sz
, size_t nCount
= npos
) const;
1363 wxCStrData
data() const;
1367 wxString
& erase(size_type pos
= 0, size_type n
= npos
);
1368 iterator
erase(iterator first
, iterator last
);
1369 iterator
erase(iterator first
);
1371 size_t find(const wxString
& str
, size_t nStart
= 0) const;
1372 size_t find(const char* sz
, size_t nStart
= 0, size_t n
= npos
) const;
1373 size_t find(const wchar_t* sz
, size_t nStart
= 0, size_t n
= npos
) const;
1374 size_t find(wxUniChar ch
, size_t nStart
= 0) const;
1375 size_t find_first_of(const char* sz
, size_t nStart
= 0) const;
1376 size_t find_first_of(const wchar_t* sz
, size_t nStart
= 0) const;
1377 size_t find_first_of(const char* sz
, size_t nStart
, size_t n
) const;
1378 size_t find_first_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1379 size_t find_first_of(wxUniChar c
, size_t nStart
= 0) const;
1380 size_t find_last_of (const wxString
& str
, size_t nStart
= npos
) const;
1381 size_t find_last_of (const char* sz
, size_t nStart
= npos
) const;
1382 size_t find_last_of (const wchar_t* sz
, size_t nStart
= npos
) const;
1383 size_t find_last_of(const char* sz
, size_t nStart
, size_t n
) const;
1384 size_t find_last_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1385 size_t find_last_of(wxUniChar c
, size_t nStart
= npos
) const;
1386 size_t find_first_not_of(const wxString
& str
, size_t nStart
= 0) const;
1387 size_t find_first_not_of(const char* sz
, size_t nStart
= 0) const;
1388 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
= 0) const;
1389 size_t find_first_not_of(const char* sz
, size_t nStart
, size_t n
) const;
1390 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1391 size_t find_first_not_of(wxUniChar ch
, size_t nStart
= 0) const;
1392 size_t find_last_not_of(const wxString
& str
, size_t nStart
= npos
) const;
1393 size_t find_last_not_of(const char* sz
, size_t nStart
= npos
) const;
1394 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
= npos
) const;
1395 size_t find_last_not_of(const char* sz
, size_t nStart
, size_t n
) const;
1396 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1398 wxString
& insert(size_t nPos
, const wxString
& str
);
1399 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
);
1400 wxString
& insert(size_t nPos
, const char *sz
, size_t n
);
1401 wxString
& insert(size_t nPos
, const wchar_t *sz
, size_t n
);
1402 wxString
& insert(size_t nPos
, size_t n
, wxUniChar ch
);
1403 iterator
insert(iterator it
, wxUniChar ch
);
1404 void insert(iterator it
, const_iterator first
, const_iterator last
);
1405 void insert(iterator it
, size_type n
, wxUniChar ch
);
1407 size_t length() const;
1409 size_type
max_size() const;
1411 void reserve(size_t sz
);
1412 void resize(size_t nSize
, wxUniChar ch
= '\0');
1414 wxString
& replace(size_t nStart
, size_t nLen
, const wxString
& str
);
1415 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxUniChar ch
);
1416 wxString
& replace(size_t nStart
, size_t nLen
,
1417 const wxString
& str
, size_t nStart2
, size_t nLen2
);
1418 wxString
& replace(size_t nStart
, size_t nLen
,
1419 const char* sz
, size_t nCount
);
1420 wxString
& replace(size_t nStart
, size_t nLen
,
1421 const wchar_t* sz
, size_t nCount
);
1422 wxString
& replace(size_t nStart
, size_t nLen
,
1423 const wxString
& s
, size_t nCount
);
1424 wxString
& replace(iterator first
, iterator last
, const wxString
& s
);
1425 wxString
& replace(iterator first
, iterator last
, const char* s
, size_type n
);
1426 wxString
& replace(iterator first
, iterator last
, const wchar_t* s
, size_type n
);
1427 wxString
& replace(iterator first
, iterator last
, size_type n
, wxUniChar ch
);
1428 wxString
& replace(iterator first
, iterator last
,
1429 const_iterator first1
, const_iterator last1
);
1430 wxString
& replace(iterator first
, iterator last
,
1431 const char *first1
, const char *last1
);
1432 wxString
& replace(iterator first
, iterator last
,
1433 const wchar_t *first1
, const wchar_t *last1
);
1435 size_t rfind(const wxString
& str
, size_t nStart
= npos
) const;
1436 size_t rfind(const char* sz
, size_t nStart
= npos
, size_t n
= npos
) const;
1437 size_t rfind(const wchar_t* sz
, size_t nStart
= npos
, size_t n
= npos
) const;
1438 size_t rfind(wxUniChar ch
, size_t nStart
= npos
) const;
1440 size_type
size() const;
1441 wxString
substr(size_t nStart
= 0, size_t nLen
= npos
) const;
1442 void swap(wxString
& str
);
1449 // Keep these functions separed from the other groups or Doxygen gets confused
1450 // -----------------------------------------------------------------------------
1453 An 'invalid' value for string index
1455 static const size_t npos
;
1458 This static function returns the string containing the result of calling
1459 Printf() with the passed parameters on it.
1461 @see FormatV(), Printf()
1463 static wxString
Format(const wxString
& format
, ...);
1466 This static function returns the string containing the result of calling
1467 PrintfV() with the passed parameters on it.
1469 @see Format(), PrintfV()
1471 static wxString
FormatV(const wxString
& format
, va_list argptr
);
1475 Converts given buffer of binary data from 8-bit string to wxString. In
1476 Unicode build, the string is interpreted as being in ISO-8859-1
1477 encoding. The version without @e len parameter takes NUL-terminated
1480 This is a convenience method useful when storing binary data in
1481 wxString. It should be used @em only for that purpose and only in
1482 conjunction with To8BitData(). Use mb_str() for conversion of character
1483 data to known encoding.
1487 @see wxString::To8BitData()
1489 static wxString
From8BitData(const char* buf
, size_t len
);
1490 static wxString
From8BitData(const char* buf
);
1495 Converts the string or character from an ASCII, 7-bit form
1496 to the native wxString representation.
1498 static wxString
FromAscii(const char* s
);
1499 static wxString
FromAscii(const unsigned char* s
);
1500 static wxString
FromAscii(const char* s
, size_t len
);
1501 static wxString
FromAscii(const unsigned char* s
, size_t len
);
1502 static wxString
FromAscii(char c
);
1506 Returns a string with the textual representation of the number in C
1509 Unlike FromDouble() the string returned by this function always uses
1510 the period character as decimal separator, independently of the current
1517 static wxString
FromCDouble(double val
);
1520 Returns a string with the textual representation of the number.
1522 This is a simple wrapper for @code wxString::Format("%g", val)
1525 Notice that the string returned by this function uses the decimal
1526 separator appropriate for the current locale, e.g. @c "," and not a
1527 period in French locale. Use FromCDouble() if this is unwanted.
1533 static wxString
FromDouble(double val
);
1537 Converts C string encoded in UTF-8 to wxString.
1539 If @a s is not a valid UTF-8 string, an empty string is returned.
1541 Notice that when using UTF-8 wxWidgets build there is a more efficient
1542 alternative to this function called FromUTF8Unchecked() which, unlike
1543 this one, doesn't check that the input string is valid.
1547 static wxString
FromUTF8(const char* s
);
1548 static wxString
FromUTF8(const char* s
, size_t len
);
1553 Converts C string encoded in UTF-8 to wxString without checking its
1556 This method assumes that @a s is a valid UTF-8 sequence and doesn't do
1557 any validation (although an assert failure is triggered in debug builds
1558 if the string is invalid). Only use it if you are absolutely sure that
1559 @a s is a correct UTF-8 string (e.g. because it comes from another
1560 library using UTF-8) and if the performance matters, otherwise use
1561 slower (in UTF-8 build) but safer FromUTF8(). Passing a bad UTF-8
1562 string to this function will result in creating a corrupted wxString
1563 and all the subsequent operations on it will be undefined.
1567 static wxString
FromUTF8Unchecked(const char* s
);
1568 static wxString
FromUTF8Unchecked(const char* s
, size_t len
);
1576 Comparison operator for string types.
1578 inline bool operator==(const wxString
& s1
, const wxString
& s2
);
1579 inline bool operator!=(const wxString
& s1
, const wxString
& s2
);
1580 inline bool operator< (const wxString
& s1
, const wxString
& s2
);
1581 inline bool operator> (const wxString
& s1
, const wxString
& s2
);
1582 inline bool operator<=(const wxString
& s1
, const wxString
& s2
);
1583 inline bool operator>=(const wxString
& s1
, const wxString
& s2
);
1584 inline bool operator==(const wxString
& s1
, const wxCStrData
& s2
);
1585 inline bool operator==(const wxCStrData
& s1
, const wxString
& s2
);
1586 inline bool operator!=(const wxString
& s1
, const wxCStrData
& s2
);
1587 inline bool operator!=(const wxCStrData
& s1
, const wxString
& s2
);
1588 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
);
1589 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
);
1590 inline bool operator!=(const wxString
& s1
, const wxWCharBuffer
& s2
);
1591 inline bool operator!=(const wxWCharBuffer
& s1
, const wxString
& s2
);
1592 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
);
1593 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
);
1594 inline bool operator!=(const wxString
& s1
, const wxCharBuffer
& s2
);
1595 inline bool operator!=(const wxCharBuffer
& s1
, const wxString
& s2
);
1600 Comparison operators char types.
1602 inline bool operator==(const wxUniChar
& c
, const wxString
& s
);
1603 inline bool operator==(const wxUniCharRef
& c
, const wxString
& s
);
1604 inline bool operator==(char c
, const wxString
& s
);
1605 inline bool operator==(wchar_t c
, const wxString
& s
);
1606 inline bool operator==(int c
, const wxString
& s
);
1607 inline bool operator==(const wxString
& s
, const wxUniChar
& c
);
1608 inline bool operator==(const wxString
& s
, const wxUniCharRef
& c
);
1609 inline bool operator==(const wxString
& s
, char c
);
1610 inline bool operator==(const wxString
& s
, wchar_t c
);
1611 inline bool operator!=(const wxUniChar
& c
, const wxString
& s
);
1612 inline bool operator!=(const wxUniCharRef
& c
, const wxString
& s
);
1613 inline bool operator!=(char c
, const wxString
& s
);
1614 inline bool operator!=(wchar_t c
, const wxString
& s
);
1615 inline bool operator!=(int c
, const wxString
& s
);
1616 inline bool operator!=(const wxString
& s
, const wxUniChar
& c
);
1617 inline bool operator!=(const wxString
& s
, const wxUniCharRef
& c
);
1618 inline bool operator!=(const wxString
& s
, char c
);
1619 inline bool operator!=(const wxString
& s
, wchar_t c
);
1623 The global wxString instance of an empty string.
1624 Used extensively in the entire wxWidgets API.
1626 wxString wxEmptyString
;
1631 @class wxStringBufferLength
1633 This tiny class allows you to conveniently access the wxString internal buffer
1634 as a writable pointer without any risk of forgetting to restore the string to
1635 the usable state later, and allows the user to set the internal length of the string.
1637 For example, assuming you have a low-level OS function called
1638 @c "int GetMeaningOfLifeAsString(char *)" copying the value in the provided
1639 buffer (which must be writable, of course), and returning the actual length
1640 of the string, you might call it like this:
1644 wxStringBufferLength theAnswerBuffer(theAnswer, 1024);
1645 int nLength = GetMeaningOfLifeAsString(theAnswerBuffer);
1646 theAnswerBuffer.SetLength(nLength);
1647 if ( theAnswer != "42" )
1648 wxLogError("Something is very wrong!");
1651 Note that the exact usage of this depends on whether or not wxUSE_STL is
1652 enabled. If wxUSE_STL is enabled, wxStringBuffer creates a separate empty
1653 character buffer, and if wxUSE_STL is disabled, it uses GetWriteBuf() from
1654 wxString, keeping the same buffer wxString uses intact. In other words,
1655 relying on wxStringBuffer containing the old wxString data is not a good
1656 idea if you want to build your program both with and without wxUSE_STL.
1658 Note that wxStringBuffer::SetLength @b must be called before
1659 wxStringBufferLength destructs.
1664 class wxStringBufferLength
1668 Constructs a writable string buffer object associated with the given string
1669 and containing enough space for at least @a len characters.
1671 Basically, this is equivalent to calling wxString::GetWriteBuf and
1674 wxStringBufferLength(const wxString
& str
, size_t len
);
1677 Restores the string passed to the constructor to the usable state by calling
1678 wxString::UngetWriteBuf on it.
1680 ~wxStringBufferLength();
1683 Sets the internal length of the string referred to by wxStringBufferLength to
1684 @a nLength characters.
1686 Must be called before wxStringBufferLength destructs.
1688 void SetLength(size_t nLength
);
1691 Returns the writable pointer to a buffer of the size at least equal to the
1692 length specified in the constructor.
1694 wxChar
* operator wxChar
*();
1699 @class wxStringBuffer
1701 This tiny class allows you to conveniently access the wxString internal buffer
1702 as a writable pointer without any risk of forgetting to restore the string
1703 to the usable state later.
1705 For example, assuming you have a low-level OS function called
1706 @c "GetMeaningOfLifeAsString(char *)" returning the value in the provided
1707 buffer (which must be writable, of course) you might call it like this:
1711 GetMeaningOfLifeAsString(wxStringBuffer(theAnswer, 1024));
1712 if ( theAnswer != "42" )
1713 wxLogError("Something is very wrong!");
1716 Note that the exact usage of this depends on whether or not @c wxUSE_STL is
1717 enabled. If @c wxUSE_STL is enabled, wxStringBuffer creates a separate empty
1718 character buffer, and if @c wxUSE_STL is disabled, it uses GetWriteBuf() from
1719 wxString, keeping the same buffer wxString uses intact. In other words,
1720 relying on wxStringBuffer containing the old wxString data is not a good
1721 idea if you want to build your program both with and without @c wxUSE_STL.
1726 class wxStringBuffer
1730 Constructs a writable string buffer object associated with the given string
1731 and containing enough space for at least @a len characters.
1732 Basically, this is equivalent to calling wxString::GetWriteBuf() and
1735 wxStringBuffer(const wxString
& str
, size_t len
);
1738 Restores the string passed to the constructor to the usable state by calling
1739 wxString::UngetWriteBuf() on it.
1744 Returns the writable pointer to a buffer of the size at least equal to the
1745 length specified in the constructor.
1747 wxStringCharType
* operator wxStringCharType
*();
1751 /** @addtogroup group_funcmacro_string */
1755 Allows to extend a function with the signature:
1756 @code bool SomeFunc(const wxUniChar& c) @endcode
1757 which operates on a single character, to an entire wxString.
1759 E.g. if you want to check if an entire string contains only digits,
1762 if (wxStringCheck<wxIsdigit>(myString))
1763 ... // the entire string contains oly digits!
1765 ... // at least one character of myString is not a digit
1768 @return @true if the given function returns a non-zero value for all
1769 characters of the @a val string.
1771 template<bool (T
)(const wxUniChar
& c
)>
1772 inline bool wxStringCheck(const wxString
& val
);