1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
13 Efficient string class [more or less] compatible with MFC CString,
14 wxWidgets version 1 wxString and std::string and some handy functions
15 missing from string.h.
18 #ifndef _WX_WXSTRING_H__
19 #define _WX_WXSTRING_H__
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 #include "wx/defs.h" // everybody should include this
27 #if defined(__WXMAC__) || defined(__VISAGECPP__)
31 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
32 // problem in VACPP V4 with including stdlib.h multiple times
33 // strconv includes it anyway
46 #ifdef HAVE_STRCASECMP_IN_STRINGS_H
47 #include <strings.h> // for strcasecmp()
48 #endif // HAVE_STRCASECMP_IN_STRINGS_H
51 #include <StringMgr.h>
54 #include "wx/wxchar.h" // for wxChar, wxStrlen() etc.
55 #include "wx/strvararg.h"
56 #include "wx/buffer.h" // for wxCharBuffer
57 #include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
58 #include "wx/stringimpl.h"
59 #include "wx/unichar.h"
61 class WXDLLIMPEXP_BASE wxString
;
63 // ---------------------------------------------------------------------------
65 // ---------------------------------------------------------------------------
67 // casts [unfortunately!] needed to call some broken functions which require
68 // "char *" instead of "const char *"
69 #define WXSTRINGCAST (wxChar *)(const wxChar *)
70 #define wxCSTRINGCAST (wxChar *)(const wxChar *)
71 #define wxMBSTRINGCAST (char *)(const char *)
72 #define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 #if WXWIN_COMPATIBILITY_2_6
80 // deprecated in favour of wxString::npos, don't use in new code
82 // maximum possible length for a string means "take all string" everywhere
83 #define wxSTRING_MAXLEN wxString::npos
85 #endif // WXWIN_COMPATIBILITY_2_6
87 // ---------------------------------------------------------------------------
88 // global functions complementing standard C string library replacements for
89 // strlen() and portable strcasecmp()
90 //---------------------------------------------------------------------------
92 #if WXWIN_COMPATIBILITY_2_8
93 // Use wxXXX() functions from wxcrt.h instead! These functions are for
94 // backwards compatibility only.
96 // checks whether the passed in pointer is NULL and if the string is empty
97 wxDEPRECATED( inline bool IsEmpty(const char *p
) );
98 inline bool IsEmpty(const char *p
) { return (!p
|| !*p
); }
100 // safe version of strlen() (returns 0 if passed NULL pointer)
101 wxDEPRECATED( inline size_t Strlen(const char *psz
) );
102 inline size_t Strlen(const char *psz
)
103 { return psz
? strlen(psz
) : 0; }
105 // portable strcasecmp/_stricmp
106 wxDEPRECATED( inline int Stricmp(const char *psz1
, const char *psz2
) );
107 inline int Stricmp(const char *psz1
, const char *psz2
)
109 #if defined(__VISUALC__) && defined(__WXWINCE__)
110 register char c1
, c2
;
112 c1
= tolower(*psz1
++);
113 c2
= tolower(*psz2
++);
114 } while ( c1
&& (c1
== c2
) );
117 #elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
118 return _stricmp(psz1
, psz2
);
119 #elif defined(__SC__)
120 return _stricmp(psz1
, psz2
);
121 #elif defined(__SALFORDC__)
122 return stricmp(psz1
, psz2
);
123 #elif defined(__BORLANDC__)
124 return stricmp(psz1
, psz2
);
125 #elif defined(__WATCOMC__)
126 return stricmp(psz1
, psz2
);
127 #elif defined(__DJGPP__)
128 return stricmp(psz1
, psz2
);
129 #elif defined(__EMX__)
130 return stricmp(psz1
, psz2
);
131 #elif defined(__WXPM__)
132 return stricmp(psz1
, psz2
);
133 #elif defined(__WXPALMOS__) || \
134 defined(HAVE_STRCASECMP_IN_STRING_H) || \
135 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
136 defined(__GNUWIN32__)
137 return strcasecmp(psz1
, psz2
);
138 #elif defined(__MWERKS__) && !defined(__INTEL__)
139 register char c1
, c2
;
141 c1
= tolower(*psz1
++);
142 c2
= tolower(*psz2
++);
143 } while ( c1
&& (c1
== c2
) );
147 // almost all compilers/libraries provide this function (unfortunately under
148 // different names), that's why we don't implement our own which will surely
149 // be more efficient than this code (uncomment to use):
151 register char c1, c2;
153 c1 = tolower(*psz1++);
154 c2 = tolower(*psz2++);
155 } while ( c1 && (c1 == c2) );
160 #error "Please define string case-insensitive compare for your OS/compiler"
161 #endif // OS/compiler
164 #endif // WXWIN_COMPATIBILITY_2_8
166 // ----------------------------------------------------------------------------
168 // ----------------------------------------------------------------------------
170 // Lightweight object returned by wxString::c_str() and implicitly convertible
171 // to either const char* or const wchar_t*.
175 // Ctors; for internal use by wxString and wxCStrData only
176 wxCStrData(const wxString
*str
, size_t offset
= 0, bool owned
= false)
177 : m_str(str
), m_offset(offset
), m_owned(owned
) {}
180 // Ctor constructs the object from char literal; they are needed to make
181 // operator?: compile and they intentionally take char*, not const char*
182 wxCStrData(char *buf
);
183 wxCStrData(wchar_t *buf
);
187 // FIXME: we'll need convertors for both char* and wchar_t* and NONE
188 // for wxChar*, but that's after completing the transition to
189 // "smart" wxUniChar class. For now, just have conversion to
190 // char* in ANSI build and wchar_t in Unicode build.
192 const wchar_t* AsWChar() const;
193 operator const wchar_t*() const { return AsWChar(); }
195 const char* AsChar() const;
196 const unsigned char* AsUnsignedChar() const
197 { return (const unsigned char *) AsChar(); }
198 operator const void*() const { return AsChar(); }
199 operator const char*() const { return AsChar(); }
200 operator const unsigned char*() const { return AsUnsignedChar(); }
203 wxString
AsString() const;
205 // allow expressions like "c_str()[0]":
206 wxUniChar
operator[](int n
) const { return operator[](size_t(n
)); }
207 wxUniChar
operator[](size_t n
) const;
208 wxUniChar
operator[](long n
) const { return operator[](size_t(n
)); }
209 #ifndef wxSIZE_T_IS_UINT
210 wxUniChar
operator[](unsigned int n
) const { return operator[](size_t(n
)); }
211 #endif // size_t != unsigned int
213 // these operators are needed to emulate the pointer semantics of c_str():
214 // expressions like "wxChar *p = str.c_str() + 1;" should continue to work
215 // (we need both versions to resolve ambiguities):
216 wxCStrData
operator+(int n
) const
217 { return wxCStrData(m_str
, m_offset
+ n
, m_owned
); }
218 wxCStrData
operator+(long n
) const
219 { return wxCStrData(m_str
, m_offset
+ n
, m_owned
); }
220 wxCStrData
operator+(size_t n
) const
221 { return wxCStrData(m_str
, m_offset
+ n
, m_owned
); }
223 // and these for "str.c_str() + n - 2":
224 wxCStrData
operator-(int n
) const
226 wxASSERT_MSG( n
<= (int)m_offset
,
227 _T("attempt to construct address before the beginning of the string") );
228 return wxCStrData(m_str
, m_offset
- n
, m_owned
);
230 wxCStrData
operator-(long n
) const
232 wxASSERT_MSG( n
<= (int)m_offset
,
233 _T("attempt to construct address before the beginning of the string") );
234 return wxCStrData(m_str
, m_offset
- n
, m_owned
);
236 wxCStrData
operator-(size_t n
) const
238 wxASSERT_MSG( n
<= m_offset
,
239 _T("attempt to construct address before the beginning of the string") );
240 return wxCStrData(m_str
, m_offset
- n
, m_owned
);
243 // this operator is needed to make expressions like "*c_str()" or
244 // "*(c_str() + 2)" work
245 wxUniChar
operator*() const;
248 const wxString
*m_str
;
252 friend class WXDLLIMPEXP_BASE wxString
;
255 // ----------------------------------------------------------------------------
256 // wxStringPrintfMixin
257 // ---------------------------------------------------------------------------
259 // NB: VC6 has a bug that causes linker errors if you have template methods
260 // in a class using __declspec(dllimport). The solution is to split such
261 // class into two classes, one that contains the template methods and does
262 // *not* use WXDLLIMPEXP_BASE and another class that contains the rest
263 // (with DLL linkage).
265 // We only do this for VC6 here, because the code is less efficient
266 // (Printf() has to use dynamic_cast<>) and because OpenWatcom compiler
267 // cannot compile this code.
269 #if defined(__VISUALC__) && __VISUALC__ < 1300
270 #define wxNEEDS_WXSTRING_PRINTF_MIXIN
273 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
274 // this class contains implementation of wxString's vararg methods, it's
275 // exported from wxBase DLL
276 class WXDLLIMPEXP_BASE wxStringPrintfMixinBase
279 wxStringPrintfMixinBase() {}
281 int DoPrintf(const wxChar
*format
, ...) ATTRIBUTE_PRINTF_2
;
282 static wxString
DoFormat(const wxChar
*format
, ...) ATTRIBUTE_PRINTF_1
;
285 // this class contains template wrappers for wxString's vararg methods, it's
286 // intentionally *not* exported from the DLL in order to fix the VC6 bug
288 class wxStringPrintfMixin
: public wxStringPrintfMixinBase
291 // to further complicate things, we can't return wxString from
292 // wxStringPrintfMixin::Format() because wxString is not yet declared at
293 // this point; the solution is to use this fake type trait template - this
294 // way the compiler won't know the return type until Format() is used
295 // (this doesn't compile with Watcom, but VC6 compiles it just fine):
296 template<typename T
> struct StringReturnType
298 typedef wxString type
;
302 // these are duplicated wxString methods, they're also declared below
303 // if !wxNEEDS_WXSTRING_PRINTF_MIXIN:
305 // int Printf(const wxChar *pszFormat, ...);
306 WX_DEFINE_VARARG_FUNC(int, Printf
, DoPrintf
)
307 // static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
308 WX_DEFINE_VARARG_FUNC(static typename StringReturnType
<T1
>::type
,
310 // int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
311 WX_DEFINE_VARARG_FUNC(int, sprintf
, DoPrintf
)
314 wxStringPrintfMixin() : wxStringPrintfMixinBase() {}
316 #endif // wxNEEDS_WXSTRING_PRINTF_MIXIN
319 // ----------------------------------------------------------------------------
320 // wxString: string class trying to be compatible with std::string, MFC
321 // CString and wxWindows 1.x wxString all at once
322 // ---------------------------------------------------------------------------
324 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
325 // "non dll-interface class 'wxStringPrintfMixin' used as base interface
326 // for dll-interface class 'wxString'" -- this is OK in our case
327 #pragma warning (disable:4275)
330 class WXDLLIMPEXP_BASE wxString
331 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
332 : public wxStringPrintfMixin
335 // NB: special care was taken in arranging the member functions in such order
336 // that all inline functions can be effectively inlined, verify that all
337 // performance critical functions are still inlined if you change order!
339 // an 'invalid' value for string index, moved to this place due to a CW bug
340 static const size_t npos
;
343 // if we hadn't made these operators private, it would be possible to
344 // compile "wxString s; s = 17;" without any warnings as 17 is implicitly
345 // converted to char in C and we do have operator=(char)
347 // NB: we don't need other versions (short/long and unsigned) as attempt
348 // to assign another numeric type to wxString will now result in
349 // ambiguity between operator=(char) and operator=(int)
350 wxString
& operator=(int);
352 // these methods are not implemented - there is _no_ conversion from int to
353 // string, you're doing something wrong if the compiler wants to call it!
355 // try `s << i' or `s.Printf("%d", i)' instead
359 // buffer for holding temporary substring when using any of the methods
360 // that take (char*,size_t) or (wchar_t*,size_t) arguments:
361 // FIXME-UTF8: This will need changes when UTF8 build is introduced
363 struct SubstrBufFromType
368 SubstrBufFromType() {}
369 SubstrBufFromType(const T
& data_
, size_t len_
)
370 : data(data_
), len(len_
) {}
373 #if wxUSE_UNICODE_UTF8
374 // FIXME-UTF8: this will have to use slightly different type
375 #elif wxUSE_UNICODE_WCHAR
376 typedef SubstrBufFromType
<const wchar_t*> SubstrBufFromWC
;
377 typedef SubstrBufFromType
<wxWCharBuffer
> SubstrBufFromMB
;
379 typedef SubstrBufFromType
<const char*> SubstrBufFromMB
;
380 typedef SubstrBufFromType
<wxCharBuffer
> SubstrBufFromWC
;
384 // Functions implementing primitive operations on string data; wxString
385 // methods and iterators are implemented in terms of it. The differences
386 // between UTF-8 and wchar_t* representations of the string are mostly
390 // FIXME-UTF8: This will need changes when UTF8 build is introduced
391 static SubstrBufFromMB
ConvertStr(const char *psz
, size_t nLength
,
392 const wxMBConv
& conv
);
394 static SubstrBufFromWC
ConvertStr(const wchar_t *pwz
, size_t nLength
,
395 const wxMBConv
& conv
);
398 #if !wxUSE_UNICODE_UTF8 // wxUSE_UNICODE_WCHAR or !wxUSE_UNICODE
399 // returns C string encoded as the implementation expects:
401 static const wchar_t* ImplStr(const wchar_t* str
)
403 static const SubstrBufFromWC
ImplStr(const wchar_t* str
, size_t n
)
404 { return SubstrBufFromWC(str
, n
== npos
? wxWcslen(str
) : n
); }
405 static wxWCharBuffer
ImplStr(const char* str
)
406 { return ConvertStr(str
, npos
, wxConvLibc
).data
; }
407 static SubstrBufFromMB
ImplStr(const char* str
, size_t n
)
408 { return ConvertStr(str
, n
, wxConvLibc
); }
410 static const char* ImplStr(const char* str
)
412 static const SubstrBufFromMB
ImplStr(const char* str
, size_t n
)
413 { return SubstrBufFromMB(str
, n
== npos
? wxStrlen(str
) : n
); }
414 static wxCharBuffer
ImplStr(const wchar_t* str
)
415 { return ConvertStr(str
, npos
, wxConvLibc
).data
; }
416 static SubstrBufFromWC
ImplStr(const wchar_t* str
, size_t n
)
417 { return ConvertStr(str
, n
, wxConvLibc
); }
420 // moves the iterator to the next Unicode character
421 static void IncIter(wxStringImpl::iterator
& i
) { ++i
; }
422 static void IncIter(wxStringImpl::const_iterator
& i
) { ++i
; }
423 // moves the iterator to the previous Unicode character
424 static void DecIter(wxStringImpl::iterator
& i
) { --i
; }
425 static void DecIter(wxStringImpl::const_iterator
& i
) { --i
; }
426 // moves the iterator by n Unicode characters
427 static wxStringImpl::iterator
AddToIter(wxStringImpl::iterator i
, int n
)
429 static wxStringImpl::const_iterator
AddToIter(wxStringImpl::const_iterator i
, int n
)
431 // returns distance of the two iterators in Unicode characters
432 static int DiffIters(wxStringImpl::iterator i1
, wxStringImpl::iterator i2
)
434 static int DiffIters(wxStringImpl::const_iterator i1
, wxStringImpl::const_iterator i2
)
437 // encodes the character to a form used to represent it in internal
438 // representation (returns a string in UTF8 version)
439 static wxChar
EncodeChar(wxUniChar ch
) { return (wxChar
)ch
; }
441 // translates position index in wxString to/from index in underlying
443 static size_t PosToImpl(size_t pos
) { return pos
; }
444 static void PosLenToImpl(size_t pos
, size_t len
,
445 size_t *implPos
, size_t *implLen
)
446 { *implPos
= pos
; *implLen
= len
; }
447 static size_t PosFromImpl(size_t pos
) { return pos
; }
449 #else // wxUSE_UNICODE_UTF8
451 typedef char Utf8CharBuffer
[5];
452 static Utf8CharBuffer
EncodeChar(wxUniChar ch
);
453 // returns n copies of ch encoded in UTF-8 string
454 static wxCharBuffer
EncodeNChars(size_t n
, wxUniChar ch
);
456 size_t PosToImpl(size_t pos
) const
458 if ( pos
== 0 || pos
== npos
)
461 return wxStringImpl::const_iterator(begin() + pos
) - m_impl
.begin();
464 size_t PosFromImpl(size_t pos
) const
466 if ( pos
== 0 || pos
== npos
)
469 return const_iterator(m_impl
.begin() + pos
) - begin();
472 // FIXME: return as-is without copying under UTF8 locale, return
473 // converted string under other locales - needs wxCharBuffer
475 static wxCharBuffer
ImplStr(const char* str
);
477 static wxCharBuffer
ImplStr(const wchar_t* str
)
478 { return wxConvUTF8
.cWC2MB(str
); }
479 #endif // !wxUSE_UNICODE_UTF8/wxUSE_UNICODE_UTF8
483 // constructors and destructor
484 // ctor for an empty string
487 wxString(const wxStringImpl
& stringSrc
) : m_impl(stringSrc
) { }
488 wxString(const wxString
& stringSrc
) : m_impl(stringSrc
) { }
489 // string containing nRepeat copies of ch
490 wxString(wxUniChar ch
, size_t nRepeat
= 1)
491 : m_impl(nRepeat
, ch
) { }
492 wxString(size_t nRepeat
, wxUniChar ch
)
493 : m_impl(nRepeat
, ch
) { }
494 wxString(wxUniCharRef ch
, size_t nRepeat
= 1)
495 : m_impl(nRepeat
, ch
) { }
496 wxString(size_t nRepeat
, wxUniCharRef ch
)
497 : m_impl(nRepeat
, ch
) { }
498 wxString(char ch
, size_t nRepeat
= 1)
499 : m_impl(nRepeat
, ch
) { }
500 wxString(size_t nRepeat
, char ch
)
501 : m_impl(nRepeat
, ch
) { }
502 wxString(wchar_t ch
, size_t nRepeat
= 1)
503 : m_impl(nRepeat
, ch
) { }
504 wxString(size_t nRepeat
, wchar_t ch
)
505 : m_impl(nRepeat
, ch
) { }
506 // ctor takes first nLength characters from C string
507 // (default value of npos means take all the string)
508 wxString(const wxChar
*psz
)
509 : m_impl(psz
? psz
: wxT("")) { }
510 wxString(const wxChar
*psz
, size_t nLength
)
511 : m_impl(psz
, nLength
) { }
512 wxString(const wxChar
*psz
,
513 const wxMBConv
& WXUNUSED(conv
),
514 size_t nLength
= npos
)
515 : m_impl(psz
, nLength
== npos
? wxStrlen(psz
) : nLength
) { }
517 // even if we're not built with wxUSE_STL == 1 it is very convenient to allow
518 // implicit conversions from std::string to wxString as this allows to use
519 // the same strings in non-GUI and GUI code, however we don't want to
520 // unconditionally add this ctor as it would make wx lib dependent on
521 // libstdc++ on some Linux versions which is bad, so instead we ask the
522 // client code to define this wxUSE_STD_STRING symbol if they need it
523 #if wxUSE_STD_STRING && !wxUSE_STL_BASED_WXSTRING
524 wxString(const wxStdString
& s
)
525 : m_impl(s
.c_str()) { } // FIXME-UTF8: this is broken for embedded 0s
526 #endif // wxUSE_STD_STRING && !wxUSE_STL_BASED_WXSTRING
529 // from multibyte string
530 wxString(const char *psz
,
531 const wxMBConv
& conv
= wxConvLibc
,
532 size_t nLength
= npos
);
533 // from multibyte string for ANSI compatibility, with wxConvLibc
534 wxString(const char *psz
, size_t nLength
);
535 // from wxWCharBuffer (i.e. return from wxGetString)
536 wxString(const wxWCharBuffer
& psz
) : m_impl(psz
.data()) { }
538 // from C string (for compilers using unsigned char)
539 wxString(const unsigned char* psz
)
540 : m_impl((const char*)psz
) { }
541 // from part of C string (for compilers using unsigned char)
542 wxString(const unsigned char* psz
, size_t nLength
)
543 : m_impl((const char*)psz
, nLength
) { }
546 // from wide (Unicode) string
547 wxString(const wchar_t *pwz
,
548 const wxMBConv
& conv
= wxConvLibc
,
549 size_t nLength
= npos
);
550 // from wide string for Unicode compatibility, with wxConvLibc
551 wxString(const wchar_t *pwz
, size_t nLength
);
552 #endif // !wxUSE_WCHAR_T
555 wxString(const wxCharBuffer
& psz
)
557 #endif // Unicode/ANSI
559 wxString(const wxCStrData
& cstr
)
560 : m_impl(cstr
.AsString().m_impl
) { }
562 // as we provide both ctors with this signature for both char and unsigned
563 // char string, we need to provide one for wxCStrData to resolve ambiguity
564 wxString(const wxCStrData
& cstr
, size_t nLength
)
565 { assign(cstr
.AsString(), nLength
); }
567 // and because wxString is convertible to wxCStrData and const wxChar *
568 // we also need to provide this one
569 wxString(const wxString
& str
, size_t nLength
)
570 { assign(str
, nLength
); }
574 typedef wxUniChar value_type
;
575 typedef wxUniChar char_type
;
576 typedef wxUniCharRef reference
;
577 typedef wxChar
* pointer
;
578 typedef const wxChar
* const_pointer
;
580 typedef size_t size_type
;
581 typedef wxUniChar const_reference
;
584 #define WX_STR_ITERATOR_TAG std::random_access_iterator_tag
586 #define WX_STR_ITERATOR_TAG void /* dummy type */
589 #define WX_STR_ITERATOR_IMPL(iterator_name, pointer_type, \
590 reference_type, reference_ctor) \
592 typedef wxStringImpl::iterator_name underlying_iterator; \
594 typedef WX_STR_ITERATOR_TAG iterator_category; \
595 typedef wxUniChar value_type; \
596 typedef int difference_type; \
597 typedef reference_type reference; \
598 typedef pointer_type pointer; \
600 iterator_name(const iterator_name& i) : m_cur(i.m_cur) {} \
602 reference operator*() const { return reference_ctor; } \
603 reference operator[](size_t n) const { return *(*this + n); } \
605 iterator_name& operator++() \
606 { wxString::IncIter(m_cur); return *this; } \
607 iterator_name& operator--() \
608 { wxString::DecIter(m_cur); return *this; } \
609 iterator_name operator++(int) \
611 iterator_name tmp = *this; \
612 wxString::IncIter(m_cur); \
615 iterator_name operator--(int) \
617 iterator_name tmp = *this; \
618 wxString::DecIter(m_cur); \
622 iterator_name operator+(int n) const \
623 { return iterator_name(wxString::AddToIter(m_cur, n)); } \
624 iterator_name operator+(size_t n) const \
625 { return iterator_name(wxString::AddToIter(m_cur, (int)n)); } \
626 iterator_name operator-(int n) const \
627 { return iterator_name(wxString::AddToIter(m_cur, -n)); } \
628 iterator_name operator-(size_t n) const \
629 { return iterator_name(wxString::AddToIter(m_cur, -(int)n)); } \
630 iterator_name operator+=(int n) \
631 { m_cur = wxString::AddToIter(m_cur, n); return *this; } \
632 iterator_name operator+=(size_t n) \
633 { m_cur = wxString::AddToIter(m_cur, (int)n); return *this; } \
634 iterator_name operator-=(int n) \
635 { m_cur = wxString::AddToIter(m_cur, -n); return *this; } \
636 iterator_name operator-=(size_t n) \
637 { m_cur = wxString::AddToIter(m_cur, -(int)n); return *this; } \
639 unsigned operator-(const iterator_name& i) const \
640 { return wxString::DiffIters(m_cur, i.m_cur); } \
642 bool operator==(const iterator_name&i) const \
643 { return m_cur == i.m_cur; } \
644 bool operator!=(const iterator_name& i) const \
645 { return m_cur != i.m_cur; } \
647 bool operator<(const iterator_name& i) const \
648 { return m_cur < i.m_cur; } \
649 bool operator>(const iterator_name& i) const \
650 { return m_cur > i.m_cur; } \
651 bool operator<=(const iterator_name& i) const \
652 { return m_cur <= i.m_cur; } \
653 bool operator>=(const iterator_name& i) const \
654 { return m_cur >= i.m_cur; } \
657 /* for internal wxString use only: */ \
658 iterator_name(underlying_iterator ptr) : m_cur(ptr) {} \
659 operator underlying_iterator() const { return m_cur; } \
661 friend class WXDLLIMPEXP_BASE wxString; \
662 friend class WXDLLIMPEXP_BASE wxCStrData; \
665 underlying_iterator m_cur;
667 class const_iterator
;
671 WX_STR_ITERATOR_IMPL(iterator
, wxChar
*, wxUniCharRef
,
672 wxUniCharRef::CreateForString(m_cur
))
674 friend class const_iterator
;
679 // NB: reference_type is intentionally value, not reference, the character
680 // may be encoded differently in wxString data:
681 WX_STR_ITERATOR_IMPL(const_iterator
, const wxChar
*, wxUniChar
,
685 const_iterator(const iterator
& i
) : m_cur(i
.m_cur
) {}
688 #undef WX_STR_ITERATOR_TAG
689 #undef WX_STR_ITERATOR_IMPL
691 friend class iterator
;
692 friend class const_iterator
;
694 template <typename T
>
695 class reverse_iterator_impl
698 typedef T iterator_type
;
700 typedef typename
T::iterator_category iterator_category
;
701 typedef typename
T::value_type value_type
;
702 typedef typename
T::difference_type difference_type
;
703 typedef typename
T::reference reference
;
704 typedef typename
T::pointer
*pointer
;
706 reverse_iterator_impl(iterator_type i
) : m_cur(i
) {}
707 reverse_iterator_impl(const reverse_iterator_impl
& ri
)
710 iterator_type
base() const { return m_cur
; }
712 reference
operator*() const { return *(m_cur
-1); }
713 reference
operator[](size_t n
) const { return *(*this + n
); }
715 reverse_iterator_impl
& operator++()
716 { --m_cur
; return *this; }
717 reverse_iterator_impl
operator++(int)
718 { reverse_iterator_impl tmp
= *this; --m_cur
; return tmp
; }
719 reverse_iterator_impl
& operator--()
720 { ++m_cur
; return *this; }
721 reverse_iterator_impl
operator--(int)
722 { reverse_iterator_impl tmp
= *this; ++m_cur
; return tmp
; }
724 reverse_iterator_impl
operator+(int n
) const
725 { return reverse_iterator_impl(m_cur
- n
); }
726 reverse_iterator_impl
operator+(size_t n
) const
727 { return reverse_iterator_impl(m_cur
- n
); }
728 reverse_iterator_impl
operator-(int n
) const
729 { return reverse_iterator_impl(m_cur
+ n
); }
730 reverse_iterator_impl
operator-(size_t n
) const
731 { return reverse_iterator_impl(m_cur
+ n
); }
732 reverse_iterator_impl
operator+=(int n
)
733 { m_cur
-= n
; return *this; }
734 reverse_iterator_impl
operator+=(size_t n
)
735 { m_cur
-= n
; return *this; }
736 reverse_iterator_impl
operator-=(int n
)
737 { m_cur
+= n
; return *this; }
738 reverse_iterator_impl
operator-=(size_t n
)
739 { m_cur
+= n
; return *this; }
741 unsigned operator-(const reverse_iterator_impl
& i
) const
742 { return i
.m_cur
- m_cur
; }
744 bool operator==(const reverse_iterator_impl
& ri
) const
745 { return m_cur
== ri
.m_cur
; }
746 bool operator!=(const reverse_iterator_impl
& ri
) const
747 { return !(*this == ri
); }
749 bool operator<(const reverse_iterator_impl
& i
) const
750 { return m_cur
> i
.m_cur
; }
751 bool operator>(const reverse_iterator_impl
& i
) const
752 { return m_cur
< i
.m_cur
; }
753 bool operator<=(const reverse_iterator_impl
& i
) const
754 { return m_cur
>= i
.m_cur
; }
755 bool operator>=(const reverse_iterator_impl
& i
) const
756 { return m_cur
<= i
.m_cur
; }
762 typedef reverse_iterator_impl
<iterator
> reverse_iterator
;
763 typedef reverse_iterator_impl
<const_iterator
> const_reverse_iterator
;
765 // first valid index position
766 const_iterator
begin() const { return const_iterator(m_impl
.begin()); }
767 iterator
begin() { return iterator(m_impl
.begin()); }
768 // position one after the last valid one
769 const_iterator
end() const { return const_iterator(m_impl
.end()); }
770 iterator
end() { return iterator(m_impl
.end()); }
772 // first element of the reversed string
773 const_reverse_iterator
rbegin() const
774 { return const_reverse_iterator(end()); }
775 reverse_iterator
rbegin()
776 { return reverse_iterator(end()); }
777 // one beyond the end of the reversed string
778 const_reverse_iterator
rend() const
779 { return const_reverse_iterator(begin()); }
780 reverse_iterator
rend()
781 { return reverse_iterator(begin()); }
783 // std::string methods:
784 #if wxUSE_UNICODE_UTF8
785 size_t length() const { return end() - begin(); } // FIXME-UTF8: optimize!
787 size_t length() const { return m_impl
.length(); }
790 size_type
size() const { return length(); }
791 size_type
max_size() const { return npos
; }
793 bool empty() const { return m_impl
.empty(); }
795 size_type
capacity() const { return m_impl
.capacity(); } // FIXME-UTF8
796 void reserve(size_t sz
) { m_impl
.reserve(sz
); } // FIXME-UTF8
798 void resize(size_t nSize
, wxUniChar ch
= wxT('\0'))
800 #if wxUSE_UNICODE_UTF8
803 size_t len
= length();
806 else if ( nSize
< len
)
809 append(nSize
- len
, ch
);
813 m_impl
.resize(nSize
, (wxStringCharType
)ch
);
816 wxString
substr(size_t nStart
= 0, size_t nLen
= npos
) const
819 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
820 return m_impl
.substr(pos
, len
);
823 // generic attributes & operations
824 // as standard strlen()
825 size_t Len() const { return length(); }
826 // string contains any characters?
827 bool IsEmpty() const { return empty(); }
828 // empty string is "false", so !str will return true
829 bool operator!() const { return empty(); }
830 // truncate the string to given length
831 wxString
& Truncate(size_t uiLen
);
832 // empty string contents
837 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
839 // empty the string and free memory
842 wxString
tmp(wxEmptyString
);
848 bool IsAscii() const;
850 bool IsNumber() const;
854 // data access (all indexes are 0 based)
856 wxUniChar
at(size_t n
) const
857 { return *(begin() + n
); } // FIXME-UTF8: optimize?
858 wxUniChar
GetChar(size_t n
) const
861 wxUniCharRef
at(size_t n
)
862 { return *(begin() + n
); } // FIXME-UTF8: optimize?
863 wxUniCharRef
GetWritableChar(size_t n
)
866 void SetChar(size_t n
, wxUniChar ch
)
869 // get last character
870 wxUniChar
Last() const
872 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
874 return at(length() - 1);
877 // get writable last character
880 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
881 return at(length() - 1);
885 Note that we we must define all of the overloads below to avoid
886 ambiguity when using str[0].
888 wxUniChar
operator[](int n
) const
890 wxUniChar
operator[](long n
) const
892 wxUniChar
operator[](size_t n
) const
894 #ifndef wxSIZE_T_IS_UINT
895 wxUniChar
operator[](unsigned int n
) const
897 #endif // size_t != unsigned int
899 // operator versions of GetWriteableChar()
900 wxUniCharRef
operator[](int n
)
902 wxUniCharRef
operator[](long n
)
904 wxUniCharRef
operator[](size_t n
)
906 #ifndef wxSIZE_T_IS_UINT
907 wxUniCharRef
operator[](unsigned int n
)
909 #endif // size_t != unsigned int
911 // explicit conversion to C string (use this with printf()!)
912 wxCStrData
c_str() const { return wxCStrData(this); }
913 wxCStrData
data() const { return c_str(); }
915 // implicit conversion to C string
916 operator wxCStrData() const { return c_str(); }
917 operator const wxChar
*() const { return c_str(); }
919 // identical to c_str(), for MFC compatibility
920 const wxCStrData
GetData() const { return c_str(); }
922 // explicit conversion to C string in internal representation (char*,
923 // wchar_t*, UTF-8-encoded char*, depending on the build):
924 const_pointer
wx_str() const { return m_impl
.c_str(); }
926 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
927 // converting numbers or strings which are certain not to contain special
928 // chars (typically system functions, X atoms, environment variables etc.)
930 // the behaviour of these functions with the strings containing anything
931 // else than 7 bit ASCII characters is undefined, use at your own risk.
933 static wxString
FromAscii(const char *ascii
); // string
934 static wxString
FromAscii(const char ascii
); // char
935 const wxCharBuffer
ToAscii() const;
937 static wxString
FromAscii(const char *ascii
) { return wxString( ascii
); }
938 static wxString
FromAscii(const char ascii
) { return wxString( ascii
); }
939 const char *ToAscii() const { return c_str(); }
940 #endif // Unicode/!Unicode
942 // conversions with (possible) format conversions: have to return a
943 // buffer with temporary data
945 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
946 // return an ANSI (multibyte) string, wc_str() to return a wide string and
947 // fn_str() to return a string which should be used with the OS APIs
948 // accepting the file names. The return value is always the same, but the
949 // type differs because a function may either return pointer to the buffer
950 // directly or have to use intermediate buffer for translation.
952 const wxCharBuffer
mb_str(const wxMBConv
& conv
= wxConvLibc
) const;
954 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
956 const wxChar
* wc_str() const { return c_str(); }
958 // for compatibility with !wxUSE_UNICODE version
959 const wxChar
* wc_str(const wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
962 const wxCharBuffer
fn_str() const { return mb_str(wxConvFile
); }
964 const wxChar
* fn_str() const { return c_str(); }
965 #endif // wxMBFILES/!wxMBFILES
967 const wxChar
* mb_str() const { return c_str(); }
969 // for compatibility with wxUSE_UNICODE version
970 const wxChar
* mb_str(const wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
972 const wxWX2MBbuf
mbc_str() const { return mb_str(); }
975 const wxWCharBuffer
wc_str(const wxMBConv
& conv
) const;
976 #endif // wxUSE_WCHAR_T
978 const wxCharBuffer
fn_str() const { return wxConvFile
.cWC2WX( wc_str( wxConvLocal
) ); }
980 const wxChar
* fn_str() const { return c_str(); }
982 #endif // Unicode/ANSI
984 // overloaded assignment
985 // from another wxString
986 wxString
& operator=(const wxStringImpl
& stringSrc
)
987 { m_impl
= stringSrc
; return *this; }
988 wxString
& operator=(const wxCStrData
& cstr
)
989 { return *this = cstr
.AsString(); }
991 wxString
& operator=(wxUniChar ch
)
992 { m_impl
= EncodeChar(ch
); return *this; }
993 wxString
& operator=(wxUniCharRef ch
)
994 { return operator=((wxUniChar
)ch
); }
995 wxString
& operator=(char ch
)
996 { return operator=(wxUniChar(ch
)); }
997 wxString
& operator=(wchar_t ch
)
998 { return operator=(wxUniChar(ch
)); }
999 // from a C string - STL probably will crash on NULL,
1000 // so we need to compensate in that case
1001 #if wxUSE_STL_BASED_WXSTRING
1002 wxString
& operator=(const wxChar
*psz
)
1003 { if(psz
) m_impl
= psz
; else Clear(); return *this; }
1005 wxString
& operator=(const wxChar
*psz
)
1006 { m_impl
= psz
; return *this; }
1010 // from wxWCharBuffer
1011 wxString
& operator=(const wxWCharBuffer
& s
)
1012 { (void) operator=((const wchar_t *)s
); return *this; }
1014 wxString
& operator=(const char* psz
)
1015 { return operator=(wxString(psz
)); }
1017 // from another kind of C string
1018 wxString
& operator=(const unsigned char* psz
);
1020 // from a wide string
1021 wxString
& operator=(const wchar_t *pwz
);
1023 // from wxCharBuffer
1024 wxString
& operator=(const wxCharBuffer
& psz
)
1025 { (void) operator=((const char *)psz
); return *this; }
1026 #endif // Unicode/ANSI
1028 // string concatenation
1029 // in place concatenation
1031 Concatenate and return the result. Note that the left to right
1032 associativity of << allows to write things like "str << str1 << str2
1033 << ..." (unlike with +=)
1036 wxString
& operator<<(const wxString
& s
)
1038 #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
1039 wxASSERT_MSG( s
.IsValid(),
1040 _T("did you forget to call UngetWriteBuf()?") );
1046 // string += C string
1047 wxString
& operator<<(const char *psz
)
1048 { append(psz
); return *this; }
1049 wxString
& operator<<(const wchar_t *pwz
)
1050 { append(pwz
); return *this; }
1051 wxString
& operator<<(const wxCStrData
& psz
)
1052 { append(psz
.AsString()); return *this; }
1054 wxString
& operator<<(wxUniChar ch
) { append(1, ch
); return *this; }
1055 wxString
& operator<<(wxUniCharRef ch
) { append(1, ch
); return *this; }
1056 wxString
& operator<<(char ch
) { append(1, ch
); return *this; }
1057 wxString
& operator<<(wchar_t ch
) { append(1, ch
); return *this; }
1059 // string += buffer (i.e. from wxGetString)
1060 wxString
& operator<<(const wxWCharBuffer
& s
)
1061 { return operator<<((const wchar_t *)s
); }
1062 wxString
& operator+=(const wxWCharBuffer
& s
)
1063 { return operator<<((const wchar_t *)s
); }
1065 wxString
& operator<<(const wxCharBuffer
& s
)
1066 { return operator<<((const char *)s
); }
1067 wxString
& operator+=(const wxCharBuffer
& s
)
1068 { return operator<<((const char *)s
); }
1070 // string += C string
1071 wxString
& Append(const wxString
& s
)
1073 // test for empty() to share the string if possible
1080 wxString
& Append(const wxCStrData
& psz
)
1081 { append(psz
); return *this; }
1082 wxString
& Append(const char* psz
)
1083 { append(psz
); return *this; }
1084 wxString
& Append(const wchar_t* pwz
)
1085 { append(pwz
); return *this; }
1086 // append count copies of given character
1087 wxString
& Append(wxUniChar ch
, size_t count
= 1u)
1088 { append(count
, ch
); return *this; }
1089 wxString
& Append(wxUniCharRef ch
, size_t count
= 1u)
1090 { append(count
, ch
); return *this; }
1091 wxString
& Append(char ch
, size_t count
= 1u)
1092 { append(count
, ch
); return *this; }
1093 wxString
& Append(wchar_t ch
, size_t count
= 1u)
1094 { append(count
, ch
); return *this; }
1095 wxString
& Append(const char* psz
, size_t nLen
)
1096 { append(psz
, nLen
); return *this; }
1097 wxString
& Append(const wchar_t* pwz
, size_t nLen
)
1098 { append(pwz
, nLen
); return *this; }
1100 // prepend a string, return the string itself
1101 wxString
& Prepend(const wxString
& str
)
1102 { *this = str
+ *this; return *this; }
1104 // non-destructive concatenation
1106 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
,
1107 const wxString
& string2
);
1108 // string with a single char
1109 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxUniChar ch
);
1110 // char with a string
1111 friend wxString WXDLLIMPEXP_BASE
operator+(wxUniChar ch
, const wxString
& string
);
1112 // string with C string
1113 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
,
1115 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
,
1116 const wchar_t *pwz
);
1117 // C string with string
1118 friend wxString WXDLLIMPEXP_BASE
operator+(const char *psz
,
1119 const wxString
& string
);
1120 friend wxString WXDLLIMPEXP_BASE
operator+(const wchar_t *pwz
,
1121 const wxString
& string
);
1123 // stream-like functions
1124 // insert an int into string
1125 wxString
& operator<<(int i
)
1126 { return (*this) << Format(_T("%d"), i
); }
1127 // insert an unsigned int into string
1128 wxString
& operator<<(unsigned int ui
)
1129 { return (*this) << Format(_T("%u"), ui
); }
1130 // insert a long into string
1131 wxString
& operator<<(long l
)
1132 { return (*this) << Format(_T("%ld"), l
); }
1133 // insert an unsigned long into string
1134 wxString
& operator<<(unsigned long ul
)
1135 { return (*this) << Format(_T("%lu"), ul
); }
1136 #if defined wxLongLong_t && !defined wxLongLongIsLong
1137 // insert a long long if they exist and aren't longs
1138 wxString
& operator<<(wxLongLong_t ll
)
1140 const wxChar
*fmt
= _T("%") wxLongLongFmtSpec
_T("d");
1141 return (*this) << Format(fmt
, ll
);
1143 // insert an unsigned long long
1144 wxString
& operator<<(wxULongLong_t ull
)
1146 const wxChar
*fmt
= _T("%") wxLongLongFmtSpec
_T("u");
1147 return (*this) << Format(fmt
, ull
);
1150 // insert a float into string
1151 wxString
& operator<<(float f
)
1152 { return (*this) << Format(_T("%f"), f
); }
1153 // insert a double into string
1154 wxString
& operator<<(double d
)
1155 { return (*this) << Format(_T("%g"), d
); }
1157 // string comparison
1158 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
1159 int Cmp(const char *psz
) const
1160 { return compare(psz
); }
1161 int Cmp(const wchar_t *pwz
) const
1162 { return compare(pwz
); }
1163 int Cmp(const wxString
& s
) const
1164 { return compare(s
); }
1165 // same as Cmp() but not case-sensitive
1166 int CmpNoCase(const wxString
& s
) const;
1167 int CmpNoCase(const char *psz
) const
1168 { return CmpNoCase(wxString(psz
)); }
1169 int CmpNoCase(const wchar_t *pwz
) const
1170 { return CmpNoCase(wxString(pwz
)); }
1171 // test for the string equality, either considering case or not
1172 // (if compareWithCase then the case matters)
1173 bool IsSameAs(const char *psz
, bool compareWithCase
= true) const
1174 { return (compareWithCase
? Cmp(psz
) : CmpNoCase(psz
)) == 0; }
1175 bool IsSameAs(const wchar_t *pwz
, bool compareWithCase
= true) const
1176 { return (compareWithCase
? Cmp(pwz
) : CmpNoCase(pwz
)) == 0; }
1177 // comparison with a single character: returns true if equal
1178 bool IsSameAs(wxUniChar c
, bool compareWithCase
= true) const
1180 return (length() == 1) && (compareWithCase
? GetChar(0u) == c
1181 : wxToupper(GetChar(0u)) == wxToupper(c
));
1184 // simple sub-string extraction
1185 // return substring starting at nFirst of length nCount (or till the end
1186 // if nCount = default value)
1187 wxString
Mid(size_t nFirst
, size_t nCount
= npos
) const;
1189 // operator version of Mid()
1190 wxString
operator()(size_t start
, size_t len
) const
1191 { return Mid(start
, len
); }
1193 // check if the string starts with the given prefix and return the rest
1194 // of the string in the provided pointer if it is not NULL; otherwise
1196 bool StartsWith(const wxChar
*prefix
, wxString
*rest
= NULL
) const;
1197 // check if the string ends with the given suffix and return the
1198 // beginning of the string before the suffix in the provided pointer if
1199 // it is not NULL; otherwise return false
1200 bool EndsWith(const wxChar
*suffix
, wxString
*rest
= NULL
) const;
1202 // get first nCount characters
1203 wxString
Left(size_t nCount
) const;
1204 // get last nCount characters
1205 wxString
Right(size_t nCount
) const;
1206 // get all characters before the first occurance of ch
1207 // (returns the whole string if ch not found)
1208 wxString
BeforeFirst(wxUniChar ch
) const;
1209 // get all characters before the last occurence of ch
1210 // (returns empty string if ch not found)
1211 wxString
BeforeLast(wxUniChar ch
) const;
1212 // get all characters after the first occurence of ch
1213 // (returns empty string if ch not found)
1214 wxString
AfterFirst(wxUniChar ch
) const;
1215 // get all characters after the last occurence of ch
1216 // (returns the whole string if ch not found)
1217 wxString
AfterLast(wxUniChar ch
) const;
1219 // for compatibility only, use more explicitly named functions above
1220 wxString
Before(wxUniChar ch
) const { return BeforeLast(ch
); }
1221 wxString
After(wxUniChar ch
) const { return AfterFirst(ch
); }
1224 // convert to upper case in place, return the string itself
1225 wxString
& MakeUpper();
1226 // convert to upper case, return the copy of the string
1227 // Here's something to remember: BC++ doesn't like returns in inlines.
1228 wxString
Upper() const ;
1229 // convert to lower case in place, return the string itself
1230 wxString
& MakeLower();
1231 // convert to lower case, return the copy of the string
1232 wxString
Lower() const ;
1234 // trimming/padding whitespace (either side) and truncating
1235 // remove spaces from left or from right (default) side
1236 wxString
& Trim(bool bFromRight
= true);
1237 // add nCount copies chPad in the beginning or at the end (default)
1238 wxString
& Pad(size_t nCount
, wxUniChar chPad
= wxT(' '), bool bFromRight
= true);
1240 // searching and replacing
1241 // searching (return starting index, or -1 if not found)
1242 int Find(wxUniChar ch
, bool bFromEnd
= false) const; // like strchr/strrchr
1243 // searching (return starting index, or -1 if not found)
1244 int Find(const wxChar
*pszSub
) const; // like strstr
1245 // replace first (or all of bReplaceAll) occurences of substring with
1246 // another string, returns the number of replacements made
1247 size_t Replace(const wxChar
*szOld
,
1248 const wxChar
*szNew
,
1249 bool bReplaceAll
= true);
1251 // check if the string contents matches a mask containing '*' and '?'
1252 bool Matches(const wxChar
*szMask
) const;
1254 // conversion to numbers: all functions return true only if the whole
1255 // string is a number and put the value of this number into the pointer
1256 // provided, the base is the numeric base in which the conversion should be
1257 // done and must be comprised between 2 and 36 or be 0 in which case the
1258 // standard C rules apply (leading '0' => octal, "0x" => hex)
1259 // convert to a signed integer
1260 bool ToLong(long *val
, int base
= 10) const;
1261 // convert to an unsigned integer
1262 bool ToULong(unsigned long *val
, int base
= 10) const;
1263 // convert to wxLongLong
1264 #if defined(wxLongLong_t)
1265 bool ToLongLong(wxLongLong_t
*val
, int base
= 10) const;
1266 // convert to wxULongLong
1267 bool ToULongLong(wxULongLong_t
*val
, int base
= 10) const;
1268 #endif // wxLongLong_t
1269 // convert to a double
1270 bool ToDouble(double *val
) const;
1273 #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
1274 // formatted input/output
1275 // as sprintf(), returns the number of characters written or < 0 on error
1276 // (take 'this' into account in attribute parameter count)
1277 // int Printf(const wxChar *pszFormat, ...);
1278 WX_DEFINE_VARARG_FUNC(int, Printf
, DoPrintf
)
1279 #endif // !wxNEEDS_WXSTRING_PRINTF_MIXIN
1280 // as vprintf(), returns the number of characters written or < 0 on error
1281 int PrintfV(const wxString
& format
, va_list argptr
);
1283 #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
1284 // returns the string containing the result of Printf() to it
1285 // static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
1286 WX_DEFINE_VARARG_FUNC(static wxString
, Format
, DoFormat
)
1288 // the same as above, but takes a va_list
1289 static wxString
FormatV(const wxString
& format
, va_list argptr
);
1291 // raw access to string memory
1292 // ensure that string has space for at least nLen characters
1293 // only works if the data of this string is not shared
1294 bool Alloc(size_t nLen
) { reserve(nLen
); /*return capacity() >= nLen;*/ return true; }
1295 // minimize the string's memory
1296 // only works if the data of this string is not shared
1298 #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
1299 // These are deprecated, use wxStringBuffer or wxStringBufferLength instead
1301 // get writable buffer of at least nLen bytes. Unget() *must* be called
1302 // a.s.a.p. to put string back in a reasonable state!
1303 wxDEPRECATED( wxChar
*GetWriteBuf(size_t nLen
) );
1304 // call this immediately after GetWriteBuf() has been used
1305 wxDEPRECATED( void UngetWriteBuf() );
1306 wxDEPRECATED( void UngetWriteBuf(size_t nLen
) );
1307 #endif // WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && wxUSE_UNICODE_UTF8
1309 // wxWidgets version 1 compatibility functions
1312 wxString
SubString(size_t from
, size_t to
) const
1313 { return Mid(from
, (to
- from
+ 1)); }
1314 // values for second parameter of CompareTo function
1315 enum caseCompare
{exact
, ignoreCase
};
1316 // values for first parameter of Strip function
1317 enum stripType
{leading
= 0x1, trailing
= 0x2, both
= 0x3};
1319 #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
1321 // (take 'this' into account in attribute parameter count)
1322 // int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
1323 WX_DEFINE_VARARG_FUNC(int, sprintf
, DoPrintf
)
1324 #endif // wxNEEDS_WXSTRING_PRINTF_MIXIN
1327 inline int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const
1328 { return cmp
== exact
? Cmp(psz
) : CmpNoCase(psz
); }
1331 size_t Length() const { return length(); }
1332 // Count the number of characters
1333 int Freq(wxUniChar ch
) const;
1335 void LowerCase() { MakeLower(); }
1337 void UpperCase() { MakeUpper(); }
1338 // use Trim except that it doesn't change this string
1339 wxString
Strip(stripType w
= trailing
) const;
1341 // use Find (more general variants not yet supported)
1342 size_t Index(const wxChar
* psz
) const { return Find(psz
); }
1343 size_t Index(wxUniChar ch
) const { return Find(ch
); }
1345 wxString
& Remove(size_t pos
) { return Truncate(pos
); }
1346 wxString
& RemoveLast(size_t n
= 1) { return Truncate(length() - n
); }
1348 wxString
& Remove(size_t nStart
, size_t nLen
)
1349 { return (wxString
&)erase( nStart
, nLen
); }
1352 int First( wxUniChar ch
) const { return Find(ch
); }
1353 int First( char ch
) const { return Find(ch
); }
1354 int First( wchar_t ch
) const { return Find(ch
); }
1355 int First( const wxChar
* psz
) const { return Find(psz
); }
1356 int First( const wxString
&str
) const { return Find(str
); }
1357 int Last( wxUniChar ch
) const { return Find(ch
, true); }
1358 bool Contains(const wxString
& str
) const { return Find(str
) != wxNOT_FOUND
; }
1361 bool IsNull() const { return empty(); }
1363 // std::string compatibility functions
1365 // take nLen chars starting at nPos
1366 wxString(const wxString
& str
, size_t nPos
, size_t nLen
)
1367 : m_impl(str
.m_impl
, nPos
, nLen
) { }
1368 // take all characters from pStart to pEnd
1369 wxString(const void *pStart
, const void *pEnd
)
1370 : m_impl((const wxChar
*)pStart
, (const wxChar
*)pEnd
) { }
1371 wxString(const_iterator first
, const_iterator last
)
1372 : m_impl(first
, last
) { }
1373 wxString(iterator first
, iterator last
)
1374 : m_impl(first
, last
) { }
1376 // lib.string.modifiers
1377 // append elements str[pos], ..., str[pos+n]
1378 wxString
& append(const wxString
& str
, size_t pos
, size_t n
)
1381 str
.PosLenToImpl(pos
, n
, &from
, &len
);
1382 m_impl
.append(str
.m_impl
, from
, len
);
1386 wxString
& append(const wxString
& str
)
1387 { m_impl
.append(str
.m_impl
); return *this; }
1388 wxString
& append(const wxCStrData
& str
)
1389 { m_impl
.append(str
.AsString().m_impl
); return *this; }
1390 // append first n (or all if n == npos) characters of sz
1391 wxString
& append(const char *sz
)
1392 { m_impl
.append(ImplStr(sz
)); return *this; }
1393 wxString
& append(const wchar_t *sz
)
1394 { m_impl
.append(ImplStr(sz
)); return *this; }
1395 wxString
& append(const char *sz
, size_t n
)
1397 SubstrBufFromMB
str(ImplStr(sz
, n
));
1398 m_impl
.append(str
.data
, str
.len
);
1401 wxString
& append(const wchar_t *sz
, size_t n
)
1403 SubstrBufFromWC
str(ImplStr(sz
, n
));
1404 m_impl
.append(str
.data
, str
.len
);
1407 // append n copies of ch
1408 wxString
& append(size_t n
, wxUniChar ch
)
1410 #if wxUSE_UNICODE_UTF8
1411 if ( !ch
.IsAscii() )
1412 m_impl
.append(EncodeNChars(n
, ch
));
1415 m_impl
.append(n
, (wxStringCharType
)ch
);
1418 // append from first to last
1419 wxString
& append(const_iterator first
, const_iterator last
)
1420 { m_impl
.append(first
, last
); return *this; }
1422 // same as `this_string = str'
1423 wxString
& assign(const wxString
& str
)
1424 { m_impl
= str
.m_impl
; return *this; }
1425 // same as ` = str[pos..pos + n]
1426 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
)
1429 str
.PosLenToImpl(pos
, n
, &from
, &len
);
1430 m_impl
.assign(str
.m_impl
, from
, len
);
1433 // same as `= first n (or all if n == npos) characters of sz'
1434 wxString
& assign(const char *sz
)
1435 { m_impl
.assign(ImplStr(sz
)); return *this; }
1436 wxString
& assign(const wchar_t *sz
)
1437 { m_impl
.assign(ImplStr(sz
)); return *this; }
1438 wxString
& assign(const char *sz
, size_t n
)
1440 SubstrBufFromMB
str(ImplStr(sz
, n
));
1441 m_impl
.assign(str
.data
, str
.len
);
1444 wxString
& assign(const wchar_t *sz
, size_t n
)
1446 SubstrBufFromWC
str(ImplStr(sz
, n
));
1447 m_impl
.assign(str
.data
, str
.len
);
1450 // same as `= n copies of ch'
1451 wxString
& assign(size_t n
, wxUniChar ch
)
1453 #if wxUSE_UNICODE_UTF8
1454 if ( !ch
.IsAscii() )
1455 m_impl
.assign(EncodeNChars(n
, ch
));
1458 m_impl
.assign(n
, (wxStringCharType
)ch
);
1461 // assign from first to last
1462 wxString
& assign(const_iterator first
, const_iterator last
)
1463 { m_impl
.assign(first
, last
); return *this; }
1465 // string comparison
1466 int compare(const wxString
& str
) const;
1467 // comparison with a substring
1468 int compare(size_t nStart
, size_t nLen
, const wxString
& str
) const;
1469 // comparison of 2 substrings
1470 int compare(size_t nStart
, size_t nLen
,
1471 const wxString
& str
, size_t nStart2
, size_t nLen2
) const;
1472 // just like strcmp()
1473 int compare(const char* sz
) const;
1474 int compare(const wchar_t* sz
) const;
1475 // substring comparison with first nCount characters of sz
1476 int compare(size_t nStart
, size_t nLen
,
1477 const char* sz
, size_t nCount
= npos
) const;
1478 int compare(size_t nStart
, size_t nLen
,
1479 const wchar_t* sz
, size_t nCount
= npos
) const;
1481 // insert another string
1482 wxString
& insert(size_t nPos
, const wxString
& str
)
1483 { insert(begin() + nPos
, str
.begin(), str
.end()); return *this; }
1484 // insert n chars of str starting at nStart (in str)
1485 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
)
1488 str
.PosLenToImpl(nStart
, n
, &from
, &len
);
1489 m_impl
.insert(PosToImpl(nPos
), str
.m_impl
, from
, len
);
1492 // insert first n (or all if n == npos) characters of sz
1493 wxString
& insert(size_t nPos
, const char *sz
)
1494 { m_impl
.insert(PosToImpl(nPos
), ImplStr(sz
)); return *this; }
1495 wxString
& insert(size_t nPos
, const wchar_t *sz
)
1496 { m_impl
.insert(PosToImpl(nPos
), ImplStr(sz
)); return *this; }
1497 wxString
& insert(size_t nPos
, const char *sz
, size_t n
)
1499 SubstrBufFromMB
str(ImplStr(sz
, n
));
1500 m_impl
.insert(PosToImpl(nPos
), str
.data
, str
.len
);
1503 wxString
& insert(size_t nPos
, const wchar_t *sz
, size_t n
)
1505 SubstrBufFromWC
str(ImplStr(sz
, n
));
1506 m_impl
.insert(PosToImpl(nPos
), str
.data
, str
.len
);
1509 // insert n copies of ch
1510 wxString
& insert(size_t nPos
, size_t n
, wxUniChar ch
)
1512 #if wxUSE_UNICODE_UTF8
1513 if ( !ch
.IsAscii() )
1514 m_impl
.insert(begin() + nPos
, EncodeNChars(n
, ch
));
1517 m_impl
.insert(begin() + nPos
, n
, (wxStringCharType
)ch
);
1520 iterator
insert(iterator it
, wxUniChar ch
)
1521 { return iterator(m_impl
.insert(it
, EncodeChar(ch
))); }
1522 void insert(iterator it
, const_iterator first
, const_iterator last
)
1523 { m_impl
.insert(it
, first
, last
); }
1524 void insert(iterator it
, size_type n
, wxUniChar ch
)
1526 #if wxUSE_UNICODE_UTF8
1527 if ( !ch
.IsAscii() )
1528 m_impl
.insert(it
, EncodeNChars(n
, ch
));
1531 m_impl
.insert(it
, n
, (wxStringCharType
)ch
);
1534 // delete characters from nStart to nStart + nLen
1535 wxString
& erase(size_type pos
= 0, size_type n
= npos
)
1538 PosLenToImpl(pos
, n
, &from
, &len
);
1539 m_impl
.erase(from
, len
);
1542 iterator
erase(iterator first
, iterator last
)
1543 { return iterator(m_impl
.erase(first
, last
)); }
1544 iterator
erase(iterator first
)
1545 { return iterator(m_impl
.erase(first
)); }
1547 #ifdef wxSTRING_BASE_HASNT_CLEAR
1548 void clear() { erase(); }
1550 void clear() { m_impl
.clear(); }
1553 // replaces the substring of length nLen starting at nStart
1554 wxString
& replace(size_t nStart
, size_t nLen
, const char* sz
)
1557 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1558 m_impl
.replace(from
, len
, ImplStr(sz
));
1561 wxString
& replace(size_t nStart
, size_t nLen
, const wchar_t* sz
)
1564 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1565 m_impl
.replace(from
, len
, ImplStr(sz
));
1568 // replaces the substring of length nLen starting at nStart
1569 wxString
& replace(size_t nStart
, size_t nLen
, const wxString
& str
)
1572 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1573 m_impl
.replace(from
, len
, str
.m_impl
);
1576 // replaces the substring with nCount copies of ch
1577 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxUniChar ch
)
1580 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1581 #if wxUSE_UNICODE_UTF8
1582 if ( !ch
.IsAscii() )
1583 m_impl
.replace(from
, len
, EncodeNChars(nCount
, ch
));
1586 m_impl
.replace(from
, len
, nCount
, (wxStringCharType
)ch
);
1589 // replaces a substring with another substring
1590 wxString
& replace(size_t nStart
, size_t nLen
,
1591 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1594 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1597 str
.PosLenToImpl(nStart2
, nLen2
, &from2
, &len2
);
1599 m_impl
.replace(from
, len
, str
.m_impl
, from2
, len2
);
1602 // replaces the substring with first nCount chars of sz
1603 wxString
& replace(size_t nStart
, size_t nLen
,
1604 const char* sz
, size_t nCount
)
1607 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1609 SubstrBufFromMB
str(ImplStr(sz
, nCount
));
1611 m_impl
.replace(from
, len
, str
.data
, str
.len
);
1614 wxString
& replace(size_t nStart
, size_t nLen
,
1615 const wchar_t* sz
, size_t nCount
)
1618 PosLenToImpl(nStart
, nLen
, &from
, &len
);
1620 SubstrBufFromWC
str(ImplStr(sz
, nCount
));
1622 m_impl
.replace(from
, len
, str
.data
, str
.len
);
1625 wxString
& replace(iterator first
, iterator last
, const char* s
)
1626 { m_impl
.replace(first
, last
, ImplStr(s
)); return *this; }
1627 wxString
& replace(iterator first
, iterator last
, const wchar_t* s
)
1628 { m_impl
.replace(first
, last
, ImplStr(s
)); return *this; }
1629 wxString
& replace(iterator first
, iterator last
, const char* s
, size_type n
)
1631 SubstrBufFromMB
str(ImplStr(s
, n
));
1632 m_impl
.replace(first
, last
, str
.data
, str
.len
);
1635 wxString
& replace(iterator first
, iterator last
, const wchar_t* s
, size_type n
)
1637 SubstrBufFromWC
str(ImplStr(s
, n
));
1638 m_impl
.replace(first
, last
, str
.data
, str
.len
);
1641 wxString
& replace(iterator first
, iterator last
, const wxString
& s
)
1642 { m_impl
.replace(first
, last
, s
.m_impl
); return *this; }
1643 wxString
& replace(iterator first
, iterator last
, size_type n
, wxUniChar ch
)
1645 #if wxUSE_UNICODE_UTF8
1646 if ( !ch
.IsAscii() )
1647 m_impl
.replace(first
, last
, EncodeNChars(n
, ch
));
1650 m_impl
.replace(first
, last
, n
, (wxStringCharType
)ch
);
1653 wxString
& replace(iterator first
, iterator last
,
1654 const_iterator first1
, const_iterator last1
)
1655 { m_impl
.replace(first
, last
, first1
, last1
); return *this; }
1658 void swap(wxString
& str
)
1659 { m_impl
.swap(str
.m_impl
); }
1662 size_t find(const wxString
& str
, size_t nStart
= 0) const
1663 { return PosFromImpl(m_impl
.find(str
.m_impl
, PosToImpl(nStart
))); }
1665 // find first n characters of sz
1666 size_t find(const char* sz
, size_t nStart
= 0, size_t n
= npos
) const
1668 SubstrBufFromMB
str(ImplStr(sz
, n
));
1669 return PosFromImpl(m_impl
.find(str
.data
, PosToImpl(nStart
), str
.len
));
1671 size_t find(const wchar_t* sz
, size_t nStart
= 0, size_t n
= npos
) const
1673 SubstrBufFromWC
str(ImplStr(sz
, n
));
1674 return PosFromImpl(m_impl
.find(str
.data
, PosToImpl(nStart
), str
.len
));
1677 // find the first occurence of character ch after nStart
1678 size_t find(wxUniChar ch
, size_t nStart
= 0) const
1679 { return PosFromImpl(m_impl
.find(EncodeChar(ch
), PosToImpl(nStart
))); }
1680 size_t find(wxUniCharRef ch
, size_t nStart
= 0) const
1681 { return find(wxUniChar(ch
), nStart
); }
1682 size_t find(char ch
, size_t nStart
= 0) const
1683 { return find(wxUniChar(ch
), nStart
); }
1684 size_t find(wchar_t ch
, size_t nStart
= 0) const
1685 { return find(wxUniChar(ch
), nStart
); }
1687 // rfind() family is exactly like find() but works right to left
1689 // as find, but from the end
1690 size_t rfind(const wxString
& str
, size_t nStart
= npos
) const
1691 { return PosFromImpl(m_impl
.rfind(str
.m_impl
, PosToImpl(nStart
))); }
1693 // as find, but from the end
1694 size_t rfind(const char* sz
, size_t nStart
= npos
, size_t n
= npos
) const
1696 SubstrBufFromMB
str(ImplStr(sz
, n
));
1697 return PosFromImpl(m_impl
.rfind(str
.data
, PosToImpl(nStart
), str
.len
));
1699 size_t rfind(const wchar_t* sz
, size_t nStart
= npos
, size_t n
= npos
) const
1701 SubstrBufFromWC
str(ImplStr(sz
, n
));
1702 return PosFromImpl(m_impl
.rfind(str
.data
, PosToImpl(nStart
), str
.len
));
1704 // as find, but from the end
1705 size_t rfind(wxUniChar ch
, size_t nStart
= npos
) const
1706 { return PosFromImpl(m_impl
.rfind(EncodeChar(ch
), PosToImpl(nStart
))); }
1707 size_t rfind(wxUniCharRef ch
, size_t nStart
= npos
) const
1708 { return rfind(wxUniChar(ch
), nStart
); }
1709 size_t rfind(char ch
, size_t nStart
= npos
) const
1710 { return rfind(wxUniChar(ch
), nStart
); }
1711 size_t rfind(wchar_t ch
, size_t nStart
= npos
) const
1712 { return rfind(wxUniChar(ch
), nStart
); }
1714 // find first/last occurence of any character (not) in the set:
1715 #if wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
1716 // FIXME-UTF8: this is not entirely correct, because it doesn't work if
1717 // sizeof(wchar_t)==2 and surrogates are present in the string;
1718 // should we care? Probably not.
1719 size_t find_first_of(const wxString
& str
, size_t nStart
= 0) const
1720 { return m_impl
.find_first_of(str
.m_impl
, nStart
); }
1721 size_t find_first_of(const char* sz
, size_t nStart
= 0) const
1722 { return m_impl
.find_first_of(ImplStr(sz
), nStart
); }
1723 size_t find_first_of(const wchar_t* sz
, size_t nStart
= 0) const
1724 { return m_impl
.find_first_of(ImplStr(sz
), nStart
); }
1725 size_t find_first_of(const char* sz
, size_t nStart
, size_t n
) const
1726 { return m_impl
.find_first_of(ImplStr(sz
), nStart
, n
); }
1727 size_t find_first_of(const wchar_t* sz
, size_t nStart
, size_t n
) const
1728 { return m_impl
.find_first_of(ImplStr(sz
), nStart
, n
); }
1729 size_t find_first_of(wxUniChar c
, size_t nStart
= 0) const
1730 { return m_impl
.find_first_of((wxChar
)c
, nStart
); }
1732 size_t find_last_of(const wxString
& str
, size_t nStart
= npos
) const
1733 { return m_impl
.find_last_of(str
.m_impl
, nStart
); }
1734 size_t find_last_of(const char* sz
, size_t nStart
= npos
) const
1735 { return m_impl
.find_last_of(ImplStr(sz
), nStart
); }
1736 size_t find_last_of(const wchar_t* sz
, size_t nStart
= npos
) const
1737 { return m_impl
.find_last_of(ImplStr(sz
), nStart
); }
1738 size_t find_last_of(const char* sz
, size_t nStart
, size_t n
) const
1739 { return m_impl
.find_last_of(ImplStr(sz
), nStart
, n
); }
1740 size_t find_last_of(const wchar_t* sz
, size_t nStart
, size_t n
) const
1741 { return m_impl
.find_last_of(ImplStr(sz
), nStart
, n
); }
1742 size_t find_last_of(wxUniChar c
, size_t nStart
= npos
) const
1743 { return m_impl
.find_last_of((wxChar
)c
, nStart
); }
1745 size_t find_first_not_of(const wxString
& str
, size_t nStart
= 0) const
1746 { return m_impl
.find_first_not_of(str
.m_impl
, nStart
); }
1747 size_t find_first_not_of(const char* sz
, size_t nStart
= 0) const
1748 { return m_impl
.find_first_not_of(ImplStr(sz
), nStart
); }
1749 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
= 0) const
1750 { return m_impl
.find_first_not_of(ImplStr(sz
), nStart
); }
1751 size_t find_first_not_of(const char* sz
, size_t nStart
, size_t n
) const
1752 { return m_impl
.find_first_not_of(ImplStr(sz
), nStart
, n
); }
1753 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const
1754 { return m_impl
.find_first_not_of(ImplStr(sz
), nStart
, n
); }
1755 size_t find_first_not_of(wxUniChar c
, size_t nStart
= 0) const
1756 { return m_impl
.find_first_not_of((wxChar
)c
, nStart
); }
1758 size_t find_last_not_of(const wxString
& str
, size_t nStart
= npos
) const
1759 { return m_impl
.find_last_not_of(str
.m_impl
, nStart
); }
1760 size_t find_last_not_of(const char* sz
, size_t nStart
= npos
) const
1761 { return m_impl
.find_last_not_of(ImplStr(sz
), nStart
); }
1762 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
= npos
) const
1763 { return m_impl
.find_last_not_of(ImplStr(sz
), nStart
); }
1764 size_t find_last_not_of(const char* sz
, size_t nStart
, size_t n
) const
1765 { return m_impl
.find_last_not_of(ImplStr(sz
), nStart
, n
); }
1766 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const
1767 { return m_impl
.find_last_not_of(ImplStr(sz
), nStart
, n
); }
1768 size_t find_last_not_of(wxUniChar c
, size_t nStart
= npos
) const
1769 { return m_impl
.find_last_not_of((wxChar
)c
, nStart
); }
1771 // we can't use std::string implementation in UTF-8 build, because the
1772 // character sets would be interpreted wrongly:
1774 // as strpbrk() but starts at nStart, returns npos if not found
1775 size_t find_first_of(const wxString
& str
, size_t nStart
= 0) const
1776 { return find_first_of((const wxChar
*)str
.c_str(), nStart
); }
1778 size_t find_first_of(const char* sz
, size_t nStart
= 0) const;
1779 size_t find_first_of(const wchar_t* sz
, size_t nStart
= 0) const;
1780 size_t find_first_of(const char* sz
, size_t nStart
, size_t n
) const;
1781 size_t find_first_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1782 // same as find(char, size_t)
1783 size_t find_first_of(wxUniChar c
, size_t nStart
= 0) const
1784 { return find(c
, nStart
); }
1785 // find the last (starting from nStart) char from str in this string
1786 size_t find_last_of (const wxString
& str
, size_t nStart
= npos
) const
1787 { return find_last_of((const wxChar
*)str
.c_str(), nStart
); }
1789 size_t find_last_of (const char* sz
, size_t nStart
= npos
) const;
1790 size_t find_last_of (const wchar_t* sz
, size_t nStart
= npos
) const;
1791 size_t find_last_of(const char* sz
, size_t nStart
, size_t n
) const;
1792 size_t find_last_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1794 size_t find_last_of(wxUniChar c
, size_t nStart
= npos
) const
1795 { return rfind(c
, nStart
); }
1797 // find first/last occurence of any character not in the set
1799 // as strspn() (starting from nStart), returns npos on failure
1800 size_t find_first_not_of(const wxString
& str
, size_t nStart
= 0) const
1801 { return find_first_not_of((const wxChar
*)str
.c_str(), nStart
); }
1803 size_t find_first_not_of(const char* sz
, size_t nStart
= 0) const;
1804 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
= 0) const;
1805 size_t find_first_not_of(const char* sz
, size_t nStart
, size_t n
) const;
1806 size_t find_first_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1808 size_t find_first_not_of(wxUniChar ch
, size_t nStart
= 0) const;
1810 size_t find_last_not_of(const wxString
& str
, size_t nStart
= npos
) const
1811 { return find_last_not_of((const wxChar
*)str
.c_str(), nStart
); }
1813 size_t find_last_not_of(const char* sz
, size_t nStart
= npos
) const;
1814 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
= npos
) const;
1815 size_t find_last_not_of(const char* sz
, size_t nStart
, size_t n
) const;
1816 size_t find_last_not_of(const wchar_t* sz
, size_t nStart
, size_t n
) const;
1818 size_t find_last_not_of(wxUniChar ch
, size_t nStart
= npos
) const;
1819 #endif // wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 or not
1821 // provide char/wchar_t/wxUniCharRef overloads for char-finding functions
1822 // above to resolve ambiguities:
1823 size_t find_first_of(wxUniCharRef ch
, size_t nStart
= 0) const
1824 { return find_first_of(wxUniChar(ch
), nStart
); }
1825 size_t find_first_of(char ch
, size_t nStart
= 0) const
1826 { return find_first_of(wxUniChar(ch
), nStart
); }
1827 size_t find_first_of(wchar_t ch
, size_t nStart
= 0) const
1828 { return find_first_of(wxUniChar(ch
), nStart
); }
1829 size_t find_last_of(wxUniCharRef ch
, size_t nStart
= npos
) const
1830 { return find_last_of(wxUniChar(ch
), nStart
); }
1831 size_t find_last_of(char ch
, size_t nStart
= npos
) const
1832 { return find_last_of(wxUniChar(ch
), nStart
); }
1833 size_t find_last_of(wchar_t ch
, size_t nStart
= npos
) const
1834 { return find_last_of(wxUniChar(ch
), nStart
); }
1835 size_t find_first_not_of(wxUniCharRef ch
, size_t nStart
= 0) const
1836 { return find_first_not_of(wxUniChar(ch
), nStart
); }
1837 size_t find_first_not_of(char ch
, size_t nStart
= 0) const
1838 { return find_first_not_of(wxUniChar(ch
), nStart
); }
1839 size_t find_first_not_of(wchar_t ch
, size_t nStart
= 0) const
1840 { return find_first_not_of(wxUniChar(ch
), nStart
); }
1841 size_t find_last_not_of(wxUniCharRef ch
, size_t nStart
= npos
) const
1842 { return find_last_not_of(wxUniChar(ch
), nStart
); }
1843 size_t find_last_not_of(char ch
, size_t nStart
= npos
) const
1844 { return find_last_not_of(wxUniChar(ch
), nStart
); }
1845 size_t find_last_not_of(wchar_t ch
, size_t nStart
= npos
) const
1846 { return find_last_not_of(wxUniChar(ch
), nStart
); }
1849 wxString
& operator+=(const wxString
& s
)
1850 { m_impl
+= s
.m_impl
; return *this; }
1851 // string += C string
1852 wxString
& operator+=(const char *psz
)
1853 { m_impl
+= ImplStr(psz
); return *this; }
1854 wxString
& operator+=(const wchar_t *pwz
)
1855 { m_impl
+= ImplStr(pwz
); return *this; }
1856 wxString
& operator+=(const wxCStrData
& s
)
1857 { m_impl
+= s
.AsString().m_impl
; return *this; }
1859 wxString
& operator+=(wxUniChar ch
)
1860 { m_impl
+= EncodeChar(ch
); return *this; }
1861 wxString
& operator+=(wxUniCharRef ch
) { return *this += wxUniChar(ch
); }
1862 wxString
& operator+=(int ch
) { return *this += wxUniChar(ch
); }
1863 wxString
& operator+=(char ch
) { return *this += wxUniChar(ch
); }
1864 wxString
& operator+=(unsigned char ch
) { return *this += wxUniChar(ch
); }
1865 wxString
& operator+=(wchar_t ch
) { return *this += wxUniChar(ch
); }
1868 #if !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
1869 // helpers for wxStringBuffer and wxStringBufferLength
1870 wxStringCharType
*DoGetWriteBuf(size_t nLen
)
1871 { return m_impl
.DoGetWriteBuf(nLen
); }
1872 void DoUngetWriteBuf()
1873 { m_impl
.DoUngetWriteBuf(); }
1874 void DoUngetWriteBuf(size_t nLen
)
1875 { m_impl
.DoUngetWriteBuf(nLen
); }
1877 friend class WXDLLIMPEXP_BASE wxStringBuffer
;
1878 friend class WXDLLIMPEXP_BASE wxStringBufferLength
;
1879 #endif // !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
1881 #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
1882 int DoPrintf(const wxChar
*format
, ...) ATTRIBUTE_PRINTF_2
;
1883 static wxString
DoFormat(const wxChar
*format
, ...) ATTRIBUTE_PRINTF_1
;
1886 #if !wxUSE_STL_BASED_WXSTRING
1887 // check string's data validity
1888 bool IsValid() const { return m_impl
.GetStringData()->IsValid(); }
1892 wxStringImpl m_impl
;
1895 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1896 #pragma warning (default:4275)
1899 // string iterator operators that satisfy STL Random Access Iterator
1901 inline wxString::iterator
operator+(int n
, wxString::iterator i
)
1903 inline wxString::iterator
operator+(size_t n
, wxString::iterator i
)
1905 inline wxString::const_iterator
operator+(int n
, wxString::const_iterator i
)
1907 inline wxString::const_iterator
operator+(size_t n
, wxString::const_iterator i
)
1909 inline wxString::reverse_iterator
operator+(int n
, wxString::reverse_iterator i
)
1911 inline wxString::reverse_iterator
operator+(size_t n
, wxString::reverse_iterator i
)
1913 inline wxString::const_reverse_iterator
operator+(int n
, wxString::const_reverse_iterator i
)
1915 inline wxString::const_reverse_iterator
operator+(size_t n
, wxString::const_reverse_iterator i
)
1918 // notice that even though for many compilers the friend declarations above are
1919 // enough, from the point of view of C++ standard we must have the declarations
1920 // here as friend ones are not injected in the enclosing namespace and without
1921 // them the code fails to compile with conforming compilers such as xlC or g++4
1922 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
, const wxString
& string2
);
1923 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, const char *psz
);
1924 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, const wchar_t *pwz
);
1925 wxString WXDLLIMPEXP_BASE
operator+(const char *psz
, const wxString
& string
);
1926 wxString WXDLLIMPEXP_BASE
operator+(const wchar_t *pwz
, const wxString
& string
);
1928 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxUniChar ch
);
1929 wxString WXDLLIMPEXP_BASE
operator+(wxUniChar ch
, const wxString
& string
);
1931 inline wxString
operator+(const wxString
& string
, wxUniCharRef ch
)
1932 { return string
+ (wxUniChar
)ch
; }
1933 inline wxString
operator+(const wxString
& string
, char ch
)
1934 { return string
+ wxUniChar(ch
); }
1935 inline wxString
operator+(const wxString
& string
, wchar_t ch
)
1936 { return string
+ wxUniChar(ch
); }
1937 inline wxString
operator+(wxUniCharRef ch
, const wxString
& string
)
1938 { return (wxUniChar
)ch
+ string
; }
1939 inline wxString
operator+(char ch
, const wxString
& string
)
1940 { return wxUniChar(ch
) + string
; }
1941 inline wxString
operator+(wchar_t ch
, const wxString
& string
)
1942 { return wxUniChar(ch
) + string
; }
1945 #if wxUSE_STL_BASED_WXSTRING
1946 // return an empty wxString (not very useful with wxUSE_STL == 1)
1947 inline const wxString
wxGetEmptyString() { return wxString(); }
1948 #else // !wxUSE_STL_BASED_WXSTRING
1949 // return an empty wxString (more efficient than wxString() here)
1950 inline const wxString
& wxGetEmptyString()
1952 return *(wxString
*)&wxEmptyString
;
1954 #endif // wxUSE_STL_BASED_WXSTRING/!wxUSE_STL_BASED_WXSTRING
1956 // ----------------------------------------------------------------------------
1957 // wxStringBuffer: a tiny class allowing to get a writable pointer into string
1958 // ----------------------------------------------------------------------------
1960 #if wxUSE_STL_BASED_WXSTRING || wxUSE_UNICODE_UTF8
1962 class WXDLLIMPEXP_BASE wxStringBuffer
1965 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
1966 : m_str(str
), m_buf(lenWanted
)
1969 ~wxStringBuffer() { m_str
.assign(m_buf
.data(), wxStrlen(m_buf
.data())); }
1971 operator wxChar
*() { return m_buf
.data(); }
1976 wxWCharBuffer m_buf
;
1981 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
1984 class WXDLLIMPEXP_BASE wxStringBufferLength
1987 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
1988 : m_str(str
), m_buf(lenWanted
), m_len(0), m_lenSet(false)
1991 ~wxStringBufferLength()
1994 m_str
.assign(m_buf
.data(), m_len
);
1997 operator wxChar
*() { return m_buf
.data(); }
1998 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
2003 wxWCharBuffer m_buf
;
2010 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
2013 #else // if !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
2015 class WXDLLIMPEXP_BASE wxStringBuffer
2018 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
2019 : m_str(str
), m_buf(NULL
)
2020 { m_buf
= m_str
.DoGetWriteBuf(lenWanted
); }
2022 ~wxStringBuffer() { m_str
.DoUngetWriteBuf(); }
2024 operator wxChar
*() const { return m_buf
; }
2030 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
2033 class WXDLLIMPEXP_BASE wxStringBufferLength
2036 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
2037 : m_str(str
), m_buf(NULL
), m_len(0), m_lenSet(false)
2039 m_buf
= m_str
.DoGetWriteBuf(lenWanted
);
2040 wxASSERT(m_buf
!= NULL
);
2043 ~wxStringBufferLength()
2046 m_str
.DoUngetWriteBuf(m_len
);
2049 operator wxChar
*() const { return m_buf
; }
2050 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
2058 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
2061 #endif // !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
2063 // ---------------------------------------------------------------------------
2064 // wxString comparison functions: operator versions are always case sensitive
2065 // ---------------------------------------------------------------------------
2067 #define wxCMP_WXCHAR_STRING(p, s, op) s.Cmp(p) op 0
2069 wxDEFINE_ALL_COMPARISONS(const wxChar
*, const wxString
&, wxCMP_WXCHAR_STRING
)
2071 #undef wxCMP_WXCHAR_STRING
2073 // note that there is an optimization in operator==() and !=(): we (quickly)
2074 // checks the strings length first, before comparing their data
2075 inline bool operator==(const wxString
& s1
, const wxString
& s2
)
2076 { return (s1
.Len() == s2
.Len()) && (s1
.Cmp(s2
) == 0); }
2077 inline bool operator!=(const wxString
& s1
, const wxString
& s2
)
2078 { return (s1
.Len() != s2
.Len()) || (s1
.Cmp(s2
) != 0); }
2079 inline bool operator< (const wxString
& s1
, const wxString
& s2
)
2080 { return s1
.Cmp(s2
) < 0; }
2081 inline bool operator> (const wxString
& s1
, const wxString
& s2
)
2082 { return s1
.Cmp(s2
) > 0; }
2083 inline bool operator<=(const wxString
& s1
, const wxString
& s2
)
2084 { return s1
.Cmp(s2
) <= 0; }
2085 inline bool operator>=(const wxString
& s1
, const wxString
& s2
)
2086 { return s1
.Cmp(s2
) >= 0; }
2089 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
)
2090 { return (s1
.Cmp((const wchar_t *)s2
) == 0); }
2091 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
)
2092 { return (s2
.Cmp((const wchar_t *)s1
) == 0); }
2093 inline bool operator!=(const wxString
& s1
, const wxWCharBuffer
& s2
)
2094 { return (s1
.Cmp((const wchar_t *)s2
) != 0); }
2095 inline bool operator!=(const wxWCharBuffer
& s1
, const wxString
& s2
)
2096 { return (s2
.Cmp((const wchar_t *)s1
) != 0); }
2097 #else // !wxUSE_UNICODE
2098 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
)
2099 { return (s1
.Cmp((const char *)s2
) == 0); }
2100 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
)
2101 { return (s2
.Cmp((const char *)s1
) == 0); }
2102 inline bool operator!=(const wxString
& s1
, const wxCharBuffer
& s2
)
2103 { return (s1
.Cmp((const char *)s2
) != 0); }
2104 inline bool operator!=(const wxCharBuffer
& s1
, const wxString
& s2
)
2105 { return (s2
.Cmp((const char *)s1
) != 0); }
2106 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
2109 inline wxString
operator+(const wxString
& string
, const wxWCharBuffer
& buf
)
2110 { return string
+ (const wchar_t *)buf
; }
2111 inline wxString
operator+(const wxWCharBuffer
& buf
, const wxString
& string
)
2112 { return (const wchar_t *)buf
+ string
; }
2113 #else // !wxUSE_UNICODE
2114 inline wxString
operator+(const wxString
& string
, const wxCharBuffer
& buf
)
2115 { return string
+ (const char *)buf
; }
2116 inline wxString
operator+(const wxCharBuffer
& buf
, const wxString
& string
)
2117 { return (const char *)buf
+ string
; }
2118 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
2120 // comparison with char
2121 inline bool operator==(const wxUniChar
& c
, const wxString
& s
) { return s
.IsSameAs(c
); }
2122 inline bool operator==(const wxUniCharRef
& c
, const wxString
& s
) { return s
.IsSameAs(c
); }
2123 inline bool operator==(char c
, const wxString
& s
) { return s
.IsSameAs(c
); }
2124 inline bool operator==(wchar_t c
, const wxString
& s
) { return s
.IsSameAs(c
); }
2125 inline bool operator==(int c
, const wxString
& s
) { return s
.IsSameAs(c
); }
2126 inline bool operator==(const wxString
& s
, const wxUniChar
& c
) { return s
.IsSameAs(c
); }
2127 inline bool operator==(const wxString
& s
, const wxUniCharRef
& c
) { return s
.IsSameAs(c
); }
2128 inline bool operator==(const wxString
& s
, char c
) { return s
.IsSameAs(c
); }
2129 inline bool operator==(const wxString
& s
, wchar_t c
) { return s
.IsSameAs(c
); }
2130 inline bool operator!=(const wxUniChar
& c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
2131 inline bool operator!=(const wxUniCharRef
& c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
2132 inline bool operator!=(char c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
2133 inline bool operator!=(wchar_t c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
2134 inline bool operator!=(int c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
2135 inline bool operator!=(const wxString
& s
, const wxUniChar
& c
) { return !s
.IsSameAs(c
); }
2136 inline bool operator!=(const wxString
& s
, const wxUniCharRef
& c
) { return !s
.IsSameAs(c
); }
2137 inline bool operator!=(const wxString
& s
, char c
) { return !s
.IsSameAs(c
); }
2138 inline bool operator!=(const wxString
& s
, wchar_t c
) { return !s
.IsSameAs(c
); }
2140 // comparison with C string in Unicode build
2143 #define wxCMP_CHAR_STRING(p, s, op) wxString(p) op s
2145 wxDEFINE_ALL_COMPARISONS(const char *, const wxString
&, wxCMP_CHAR_STRING
)
2147 #undef wxCMP_CHAR_STRING
2149 #endif // wxUSE_UNICODE
2151 // we also need to provide the operators for comparison with wxCStrData to
2152 // resolve ambiguity between operator(const wxChar *,const wxString &) and
2153 // operator(const wxChar *, const wxChar *) for "p == s.c_str()"
2155 // notice that these are (shallow) pointer comparisons, not (deep) string ones
2156 #define wxCMP_CHAR_CSTRDATA(p, s, op) p op s.AsChar()
2157 #define wxCMP_WCHAR_CSTRDATA(p, s, op) p op s.AsWChar()
2159 // FIXME: these ifdefs must be removed when wxCStrData has both conversions
2161 wxDEFINE_ALL_COMPARISONS(const wchar_t *, const wxCStrData
&, wxCMP_WCHAR_CSTRDATA
)
2163 wxDEFINE_ALL_COMPARISONS(const char *, const wxCStrData
&, wxCMP_CHAR_CSTRDATA
)
2166 #undef wxCMP_CHAR_CSTRDATA
2167 #undef wxCMP_WCHAR_CSTRDATA
2169 // ---------------------------------------------------------------------------
2170 // Implementation only from here until the end of file
2171 // ---------------------------------------------------------------------------
2173 #if wxUSE_STD_IOSTREAM
2175 #include "wx/iosfwrap.h"
2177 WXDLLIMPEXP_BASE wxSTD ostream
& operator<<(wxSTD ostream
&, const wxString
&);
2178 WXDLLIMPEXP_BASE wxSTD ostream
& operator<<(wxSTD ostream
&, const wxCStrData
&);
2180 #endif // wxSTD_STRING_COMPATIBILITY
2182 // ---------------------------------------------------------------------------
2183 // wxCStrData implementation
2184 // ---------------------------------------------------------------------------
2186 inline wxCStrData::wxCStrData(char *buf
)
2187 : m_str(new wxString(buf
)), m_offset(0), m_owned(true) {}
2188 inline wxCStrData::wxCStrData(wchar_t *buf
)
2189 : m_str(new wxString(buf
)), m_offset(0), m_owned(true) {}
2191 inline wxCStrData::~wxCStrData()
2198 inline const wchar_t* wxCStrData::AsWChar() const
2200 inline const char* wxCStrData::AsChar() const
2203 // FIXME-UTF8: incorrect position, incorrect charset
2204 return m_str
->wx_str() + m_offset
;
2207 inline wxString
wxCStrData::AsString() const
2209 if ( m_offset
== 0 )
2212 return m_str
->Mid(m_offset
);
2215 inline wxUniChar
wxCStrData::operator*() const
2217 if ( m_str
->empty() )
2218 return wxUniChar(_T('\0'));
2220 return (*m_str
)[m_offset
];
2223 inline wxUniChar
wxCStrData::operator[](size_t n
) const
2225 return m_str
->at(m_offset
+ n
);
2228 // ----------------------------------------------------------------------------
2229 // implementation of wx[W]CharBuffer inline methods using wxCStrData
2230 // ----------------------------------------------------------------------------
2232 // FIXME-UTF8: move this to buffer.h; provide versions for both variants
2233 inline wxWxCharBuffer::wxWxCharBuffer(const wxCStrData
& cstr
)
2234 : wxCharTypeBufferBase((const wxChar
*)cstr
)
2238 #endif // _WX_WXSTRING_H__