1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString and wxArrayString classes
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_WXSTRINGH__
19 #define _WX_WXSTRINGH__
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
55 #include "wx/buffer.h" // for wxCharBuffer
56 #include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
58 class WXDLLIMPEXP_BASE wxString
;
60 // ---------------------------------------------------------------------------
62 // ---------------------------------------------------------------------------
64 // casts [unfortunately!] needed to call some broken functions which require
65 // "char *" instead of "const char *"
66 #define WXSTRINGCAST (wxChar *)(const wxChar *)
67 #define wxCSTRINGCAST (wxChar *)(const wxChar *)
68 #define wxMBSTRINGCAST (char *)(const char *)
69 #define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
71 // implementation only
72 #define wxASSERT_VALID_INDEX(i) \
73 wxASSERT_MSG( (size_t)(i) <= length(), _T("invalid index in wxString") )
75 // ----------------------------------------------------------------------------
77 // ----------------------------------------------------------------------------
79 #if WXWIN_COMPATIBILITY_2_6
81 // deprecated in favour of wxString::npos, don't use in new code
83 // maximum possible length for a string means "take all string" everywhere
84 #define wxSTRING_MAXLEN wxStringBase::npos
86 #endif // WXWIN_COMPATIBILITY_2_6
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 // global pointer to empty string
93 extern WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxEmptyString
;
95 // ---------------------------------------------------------------------------
96 // global functions complementing standard C string library replacements for
97 // strlen() and portable strcasecmp()
98 //---------------------------------------------------------------------------
100 // Use wxXXX() functions from wxchar.h instead! These functions are for
101 // backwards compatibility only.
103 // checks whether the passed in pointer is NULL and if the string is empty
104 inline bool IsEmpty(const char *p
) { return (!p
|| !*p
); }
106 // safe version of strlen() (returns 0 if passed NULL pointer)
107 inline size_t Strlen(const char *psz
)
108 { return psz
? strlen(psz
) : 0; }
110 // portable strcasecmp/_stricmp
111 inline int Stricmp(const char *psz1
, const char *psz2
)
113 #if defined(__VISUALC__) && defined(__WXWINCE__)
114 register char c1
, c2
;
116 c1
= tolower(*psz1
++);
117 c2
= tolower(*psz2
++);
118 } while ( c1
&& (c1
== c2
) );
121 #elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
122 return _stricmp(psz1
, psz2
);
123 #elif defined(__SC__)
124 return _stricmp(psz1
, psz2
);
125 #elif defined(__SALFORDC__)
126 return stricmp(psz1
, psz2
);
127 #elif defined(__BORLANDC__)
128 return stricmp(psz1
, psz2
);
129 #elif defined(__WATCOMC__)
130 return stricmp(psz1
, psz2
);
131 #elif defined(__DJGPP__)
132 return stricmp(psz1
, psz2
);
133 #elif defined(__EMX__)
134 return stricmp(psz1
, psz2
);
135 #elif defined(__WXPM__)
136 return stricmp(psz1
, psz2
);
137 #elif defined(__WXPALMOS__) || \
138 defined(HAVE_STRCASECMP_IN_STRING_H) || \
139 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
140 defined(__GNUWIN32__)
141 return strcasecmp(psz1
, psz2
);
142 #elif defined(__MWERKS__) && !defined(__INTEL__)
143 register char c1
, c2
;
145 c1
= tolower(*psz1
++);
146 c2
= tolower(*psz2
++);
147 } while ( c1
&& (c1
== c2
) );
151 // almost all compilers/libraries provide this function (unfortunately under
152 // different names), that's why we don't implement our own which will surely
153 // be more efficient than this code (uncomment to use):
155 register char c1, c2;
157 c1 = tolower(*psz1++);
158 c2 = tolower(*psz2++);
159 } while ( c1 && (c1 == c2) );
164 #error "Please define string case-insensitive compare for your OS/compiler"
165 #endif // OS/compiler
168 // ----------------------------------------------------------------------------
169 // deal with STL/non-STL/non-STL-but-wxUSE_STD_STRING
170 // ----------------------------------------------------------------------------
172 // in both cases we need to define wxStdString
173 #if wxUSE_STL || wxUSE_STD_STRING
175 #include "wx/beforestd.h"
177 #include "wx/afterstd.h"
180 #ifdef HAVE_STD_WSTRING
181 typedef std::wstring wxStdString
;
183 typedef std::basic_string
<wxChar
> wxStdString
;
186 typedef std::string wxStdString
;
189 #endif // need <string>
193 // we don't need an extra ctor from std::string when copy ctor already does
195 #undef wxUSE_STD_STRING
196 #define wxUSE_STD_STRING 0
198 #if (defined(__GNUG__) && (__GNUG__ < 3)) || \
199 (defined(_MSC_VER) && (_MSC_VER <= 1200))
200 #define wxSTRING_BASE_HASNT_CLEAR
203 typedef wxStdString wxStringBase
;
204 #else // if !wxUSE_STL
206 #if !defined(HAVE_STD_STRING_COMPARE) && \
207 (!defined(__WX_SETUP_H__) || wxUSE_STL == 0)
208 #define HAVE_STD_STRING_COMPARE
211 // ---------------------------------------------------------------------------
212 // string data prepended with some housekeeping info (used by wxString class),
213 // is never used directly (but had to be put here to allow inlining)
214 // ---------------------------------------------------------------------------
216 struct WXDLLIMPEXP_BASE wxStringData
218 int nRefs
; // reference count
219 size_t nDataLength
, // actual string length
220 nAllocLength
; // allocated memory size
222 // mimics declaration 'wxChar data[nAllocLength]'
223 wxChar
* data() const { return (wxChar
*)(this + 1); }
225 // empty string has a special ref count so it's never deleted
226 bool IsEmpty() const { return (nRefs
== -1); }
227 bool IsShared() const { return (nRefs
> 1); }
230 void Lock() { if ( !IsEmpty() ) nRefs
++; }
232 // VC++ will refuse to inline Unlock but profiling shows that it is wrong
233 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
236 // VC++ free must take place in same DLL as allocation when using non dll
237 // run-time library (e.g. Multithreaded instead of Multithreaded DLL)
238 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
239 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) Free(); }
240 // we must not inline deallocation since allocation is not inlined
243 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) free(this); }
246 // if we had taken control over string memory (GetWriteBuf), it's
247 // intentionally put in invalid state
248 void Validate(bool b
) { nRefs
= (b
? 1 : 0); }
249 bool IsValid() const { return (nRefs
!= 0); }
252 class WXDLLIMPEXP_BASE wxStringBase
255 friend class WXDLLIMPEXP_BASE wxArrayString
;
258 // an 'invalid' value for string index, moved to this place due to a CW bug
259 static const size_t npos
;
261 // points to data preceded by wxStringData structure with ref count info
264 // accessor to string data
265 wxStringData
* GetStringData() const { return (wxStringData
*)m_pchData
- 1; }
267 // string (re)initialization functions
268 // initializes the string to the empty value (must be called only from
269 // ctors, use Reinit() otherwise)
270 void Init() { m_pchData
= (wxChar
*)wxEmptyString
; }
271 // initializes the string with (a part of) C-string
272 void InitWith(const wxChar
*psz
, size_t nPos
= 0, size_t nLen
= npos
);
273 // as Init, but also frees old data
274 void Reinit() { GetStringData()->Unlock(); Init(); }
277 // allocates memory for string of length nLen
278 bool AllocBuffer(size_t nLen
);
279 // copies data to another string
280 bool AllocCopy(wxString
&, int, int) const;
281 // effectively copies data to string
282 bool AssignCopy(size_t, const wxChar
*);
284 // append a (sub)string
285 bool ConcatSelf(size_t nLen
, const wxChar
*src
, size_t nMaxLen
);
286 bool ConcatSelf(size_t nLen
, const wxChar
*src
)
287 { return ConcatSelf(nLen
, src
, nLen
); }
289 // functions called before writing to the string: they copy it if there
290 // are other references to our data (should be the only owner when writing)
291 bool CopyBeforeWrite();
292 bool AllocBeforeWrite(size_t);
294 // compatibility with wxString
295 bool Alloc(size_t nLen
);
298 typedef wxChar value_type
;
299 typedef wxChar char_type
;
300 typedef size_t size_type
;
301 typedef value_type
& reference
;
302 typedef const value_type
& const_reference
;
303 typedef value_type
* pointer
;
304 typedef const value_type
* const_pointer
;
305 typedef value_type
*iterator
;
306 typedef const value_type
*const_iterator
;
308 #define wxSTRING_REVERSE_ITERATOR(name, const_or_not) \
312 typedef wxChar value_type; \
313 typedef const_or_not value_type& reference; \
314 typedef const_or_not value_type *pointer; \
315 typedef const_or_not value_type *iterator_type; \
317 name(iterator_type i) : m_cur(i) { } \
318 name(const name& ri) : m_cur(ri.m_cur) { } \
320 iterator_type base() const { return m_cur; } \
322 reference operator*() const { return *(m_cur - 1); } \
324 name& operator++() { --m_cur; return *this; } \
325 name operator++(int) { name tmp = *this; --m_cur; return tmp; } \
326 name& operator--() { ++m_cur; return *this; } \
327 name operator--(int) { name tmp = *this; ++m_cur; return tmp; } \
329 bool operator==(name ri) const { return m_cur == ri.m_cur; } \
330 bool operator!=(name ri) const { return !(*this == ri); } \
333 iterator_type m_cur; \
336 wxSTRING_REVERSE_ITERATOR(const_reverse_iterator
, const);
338 #define wxSTRING_CONST
339 wxSTRING_REVERSE_ITERATOR(reverse_iterator
, wxSTRING_CONST
);
340 #undef wxSTRING_CONST
342 #undef wxSTRING_REVERSE_ITERATOR
345 // constructors and destructor
346 // ctor for an empty string
347 wxStringBase() { Init(); }
349 wxStringBase(const wxStringBase
& stringSrc
)
351 wxASSERT_MSG( stringSrc
.GetStringData()->IsValid(),
352 _T("did you forget to call UngetWriteBuf()?") );
354 if ( stringSrc
.empty() ) {
355 // nothing to do for an empty string
359 m_pchData
= stringSrc
.m_pchData
; // share same data
360 GetStringData()->Lock(); // => one more copy
363 // string containing nRepeat copies of ch
364 wxStringBase(size_type nRepeat
, wxChar ch
);
365 // ctor takes first nLength characters from C string
366 // (default value of npos means take all the string)
367 wxStringBase(const wxChar
*psz
)
368 { InitWith(psz
, 0, npos
); }
369 wxStringBase(const wxChar
*psz
, size_t nLength
)
370 { InitWith(psz
, 0, nLength
); }
371 wxStringBase(const wxChar
*psz
,
372 const wxMBConv
& WXUNUSED(conv
),
373 size_t nLength
= npos
)
374 { InitWith(psz
, 0, nLength
); }
375 // take nLen chars starting at nPos
376 wxStringBase(const wxStringBase
& str
, size_t nPos
, size_t nLen
)
378 wxASSERT_MSG( str
.GetStringData()->IsValid(),
379 _T("did you forget to call UngetWriteBuf()?") );
381 size_t strLen
= str
.length() - nPos
; nLen
= strLen
< nLen
? strLen
: nLen
;
382 InitWith(str
.c_str(), nPos
, nLen
);
384 // take all characters from pStart to pEnd
385 wxStringBase(const void *pStart
, const void *pEnd
);
387 // dtor is not virtual, this class must not be inherited from!
390 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
391 //RN - according to the above VC++ does indeed inline this,
392 //even though it spits out two warnings
393 #pragma warning (disable:4714)
396 GetStringData()->Unlock();
399 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
400 //re-enable inlining warning
401 #pragma warning (default:4714)
403 // overloaded assignment
404 // from another wxString
405 wxStringBase
& operator=(const wxStringBase
& stringSrc
);
407 wxStringBase
& operator=(wxChar ch
);
409 wxStringBase
& operator=(const wxChar
*psz
);
411 // return the length of the string
412 size_type
length() const { return GetStringData()->nDataLength
; }
413 // return the length of the string
414 size_type
size() const { return length(); }
415 // return the maximum size of the string
416 size_type
max_size() const { return npos
; }
417 // resize the string, filling the space with c if c != 0
418 void resize(size_t nSize
, wxChar ch
= wxT('\0'));
419 // delete the contents of the string
420 void clear() { erase(0, npos
); }
421 // returns true if the string is empty
422 bool empty() const { return length() == 0; }
423 // inform string about planned change in size
424 void reserve(size_t sz
) { Alloc(sz
); }
425 size_type
capacity() const { return GetStringData()->nAllocLength
; }
428 // return the character at position n
429 value_type
at(size_type n
) const
430 { wxASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
431 // returns the writable character at position n
432 reference
at(size_type n
)
433 { wxASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
435 // lib.string.modifiers
436 // append elements str[pos], ..., str[pos+n]
437 wxStringBase
& append(const wxStringBase
& str
, size_t pos
, size_t n
)
439 wxASSERT(pos
<= str
.length());
440 ConcatSelf(n
, str
.c_str() + pos
, str
.length() - pos
);
444 wxStringBase
& append(const wxStringBase
& str
)
445 { ConcatSelf(str
.length(), str
.c_str()); return *this; }
446 // append first n (or all if n == npos) characters of sz
447 wxStringBase
& append(const wxChar
*sz
)
448 { ConcatSelf(wxStrlen(sz
), sz
); return *this; }
449 wxStringBase
& append(const wxChar
*sz
, size_t n
)
450 { ConcatSelf(n
, sz
); return *this; }
451 // append n copies of ch
452 wxStringBase
& append(size_t n
, wxChar ch
);
453 // append from first to last
454 wxStringBase
& append(const_iterator first
, const_iterator last
)
455 { ConcatSelf(last
- first
, first
); return *this; }
457 // same as `this_string = str'
458 wxStringBase
& assign(const wxStringBase
& str
)
459 { return *this = str
; }
460 // same as ` = str[pos..pos + n]
461 wxStringBase
& assign(const wxStringBase
& str
, size_t pos
, size_t n
)
462 { clear(); return append(str
, pos
, n
); }
463 // same as `= first n (or all if n == npos) characters of sz'
464 wxStringBase
& assign(const wxChar
*sz
)
465 { clear(); return append(sz
, wxStrlen(sz
)); }
466 wxStringBase
& assign(const wxChar
*sz
, size_t n
)
467 { clear(); return append(sz
, n
); }
468 // same as `= n copies of ch'
469 wxStringBase
& assign(size_t n
, wxChar ch
)
470 { clear(); return append(n
, ch
); }
471 // assign from first to last
472 wxStringBase
& assign(const_iterator first
, const_iterator last
)
473 { clear(); return append(first
, last
); }
475 // first valid index position
476 const_iterator
begin() const { return m_pchData
; }
478 // position one after the last valid one
479 const_iterator
end() const { return m_pchData
+ length(); }
482 // first element of the reversed string
483 const_reverse_iterator
rbegin() const { return const_reverse_iterator(end()); }
484 reverse_iterator
rbegin() { return reverse_iterator(end()); }
485 // one beyond the end of the reversed string
486 const_reverse_iterator
rend() const { return const_reverse_iterator(begin()); }
487 reverse_iterator
rend() { return reverse_iterator(begin()); }
489 // insert another string
490 wxStringBase
& insert(size_t nPos
, const wxStringBase
& str
)
492 wxASSERT( str
.GetStringData()->IsValid() );
493 return insert(nPos
, str
.c_str(), str
.length());
495 // insert n chars of str starting at nStart (in str)
496 wxStringBase
& insert(size_t nPos
, const wxStringBase
& str
, size_t nStart
, size_t n
)
498 wxASSERT( str
.GetStringData()->IsValid() );
499 wxASSERT( nStart
< str
.length() );
500 size_t strLen
= str
.length() - nStart
;
501 n
= strLen
< n
? strLen
: n
;
502 return insert(nPos
, str
.c_str() + nStart
, n
);
504 // insert first n (or all if n == npos) characters of sz
505 wxStringBase
& insert(size_t nPos
, const wxChar
*sz
, size_t n
= npos
);
506 // insert n copies of ch
507 wxStringBase
& insert(size_t nPos
, size_t n
, wxChar ch
)
508 { return insert(nPos
, wxStringBase(n
, ch
)); }
509 iterator
insert(iterator it
, wxChar ch
)
510 { size_t idx
= it
- begin(); insert(idx
, 1, ch
); return begin() + idx
; }
511 void insert(iterator it
, const_iterator first
, const_iterator last
)
512 { insert(it
- begin(), first
, last
- first
); }
513 void insert(iterator it
, size_type n
, wxChar ch
)
514 { insert(it
- begin(), n
, ch
); }
516 // delete characters from nStart to nStart + nLen
517 wxStringBase
& erase(size_type pos
= 0, size_type n
= npos
);
518 iterator
erase(iterator first
, iterator last
)
520 size_t idx
= first
- begin();
521 erase(idx
, last
- first
);
522 return begin() + idx
;
524 iterator
erase(iterator first
);
526 // explicit conversion to C string (use this with printf()!)
527 const wxChar
* c_str() const { return m_pchData
; }
528 const wxChar
* data() const { return m_pchData
; }
530 // replaces the substring of length nLen starting at nStart
531 wxStringBase
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
);
532 // replaces the substring of length nLen starting at nStart
533 wxStringBase
& replace(size_t nStart
, size_t nLen
, const wxStringBase
& str
)
534 { return replace(nStart
, nLen
, str
.c_str()); }
535 // replaces the substring with nCount copies of ch
536 wxStringBase
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
);
537 // replaces a substring with another substring
538 wxStringBase
& replace(size_t nStart
, size_t nLen
,
539 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
);
540 // replaces the substring with first nCount chars of sz
541 wxStringBase
& replace(size_t nStart
, size_t nLen
,
542 const wxChar
* sz
, size_t nCount
);
543 wxStringBase
& replace(iterator first
, iterator last
, const_pointer s
)
544 { return replace(first
- begin(), last
- first
, s
); }
545 wxStringBase
& replace(iterator first
, iterator last
, const_pointer s
,
547 { return replace(first
- begin(), last
- first
, s
, n
); }
548 wxStringBase
& replace(iterator first
, iterator last
, const wxStringBase
& s
)
549 { return replace(first
- begin(), last
- first
, s
); }
550 wxStringBase
& replace(iterator first
, iterator last
, size_type n
, wxChar c
)
551 { return replace(first
- begin(), last
- first
, n
, c
); }
552 wxStringBase
& replace(iterator first
, iterator last
,
553 const_iterator first1
, const_iterator last1
)
554 { return replace(first
- begin(), last
- first
, first1
, last1
- first1
); }
557 void swap(wxStringBase
& str
);
559 // All find() functions take the nStart argument which specifies the
560 // position to start the search on, the default value is 0. All functions
561 // return npos if there were no match.
564 size_t find(const wxStringBase
& str
, size_t nStart
= 0) const;
566 // find first n characters of sz
567 size_t find(const wxChar
* sz
, size_t nStart
= 0, size_t n
= npos
) const;
569 // find the first occurence of character ch after nStart
570 size_t find(wxChar ch
, size_t nStart
= 0) const;
572 // rfind() family is exactly like find() but works right to left
574 // as find, but from the end
575 size_t rfind(const wxStringBase
& str
, size_t nStart
= npos
) const;
577 // as find, but from the end
578 size_t rfind(const wxChar
* sz
, size_t nStart
= npos
,
579 size_t n
= npos
) const;
580 // as find, but from the end
581 size_t rfind(wxChar ch
, size_t nStart
= npos
) const;
583 // find first/last occurence of any character in the set
585 // as strpbrk() but starts at nStart, returns npos if not found
586 size_t find_first_of(const wxStringBase
& str
, size_t nStart
= 0) const
587 { return find_first_of(str
.c_str(), nStart
); }
589 size_t find_first_of(const wxChar
* sz
, size_t nStart
= 0) const;
590 size_t find_first_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
591 // same as find(char, size_t)
592 size_t find_first_of(wxChar c
, size_t nStart
= 0) const
593 { return find(c
, nStart
); }
594 // find the last (starting from nStart) char from str in this string
595 size_t find_last_of (const wxStringBase
& str
, size_t nStart
= npos
) const
596 { return find_last_of(str
.c_str(), nStart
); }
598 size_t find_last_of (const wxChar
* sz
, size_t nStart
= npos
) const;
599 size_t find_last_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
601 size_t find_last_of(wxChar c
, size_t nStart
= npos
) const
602 { return rfind(c
, nStart
); }
604 // find first/last occurence of any character not in the set
606 // as strspn() (starting from nStart), returns npos on failure
607 size_t find_first_not_of(const wxStringBase
& str
, size_t nStart
= 0) const
608 { return find_first_not_of(str
.c_str(), nStart
); }
610 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
= 0) const;
611 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
613 size_t find_first_not_of(wxChar ch
, size_t nStart
= 0) const;
615 size_t find_last_not_of(const wxStringBase
& str
, size_t nStart
= npos
) const
616 { return find_last_not_of(str
.c_str(), nStart
); }
618 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
= npos
) const;
619 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
621 size_t find_last_not_of(wxChar ch
, size_t nStart
= npos
) const;
623 // All compare functions return -1, 0 or 1 if the [sub]string is less,
624 // equal or greater than the compare() argument.
626 // comparison with another string
627 int compare(const wxStringBase
& str
) const;
628 // comparison with a substring
629 int compare(size_t nStart
, size_t nLen
, const wxStringBase
& str
) const;
630 // comparison of 2 substrings
631 int compare(size_t nStart
, size_t nLen
,
632 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
) const;
633 // comparison with a c string
634 int compare(const wxChar
* sz
) const;
635 // substring comparison with first nCount characters of sz
636 int compare(size_t nStart
, size_t nLen
,
637 const wxChar
* sz
, size_t nCount
= npos
) const;
639 size_type
copy(wxChar
* s
, size_type n
, size_type pos
= 0);
641 // substring extraction
642 wxStringBase
substr(size_t nStart
= 0, size_t nLen
= npos
) const;
645 wxStringBase
& operator+=(const wxStringBase
& s
) { return append(s
); }
646 // string += C string
647 wxStringBase
& operator+=(const wxChar
*psz
) { return append(psz
); }
649 wxStringBase
& operator+=(wxChar ch
) { return append(1, ch
); }
654 // ----------------------------------------------------------------------------
655 // wxString: string class trying to be compatible with std::string, MFC
656 // CString and wxWindows 1.x wxString all at once
657 // ---------------------------------------------------------------------------
659 class WXDLLIMPEXP_BASE wxString
: public wxStringBase
662 friend class WXDLLIMPEXP_BASE wxArrayString
;
665 // NB: special care was taken in arranging the member functions in such order
666 // that all inline functions can be effectively inlined, verify that all
667 // performance critical functions are still inlined if you change order!
669 // if we hadn't made these operators private, it would be possible to
670 // compile "wxString s; s = 17;" without any warnings as 17 is implicitly
671 // converted to char in C and we do have operator=(char)
673 // NB: we don't need other versions (short/long and unsigned) as attempt
674 // to assign another numeric type to wxString will now result in
675 // ambiguity between operator=(char) and operator=(int)
676 wxString
& operator=(int);
678 // these methods are not implemented - there is _no_ conversion from int to
679 // string, you're doing something wrong if the compiler wants to call it!
681 // try `s << i' or `s.Printf("%d", i)' instead
685 // constructors and destructor
686 // ctor for an empty string
687 wxString() : wxStringBase() { }
689 wxString(const wxStringBase
& stringSrc
) : wxStringBase(stringSrc
) { }
690 wxString(const wxString
& stringSrc
) : wxStringBase(stringSrc
) { }
691 // string containing nRepeat copies of ch
692 wxString(wxChar ch
, size_t nRepeat
= 1)
693 : wxStringBase(nRepeat
, ch
) { }
694 wxString(size_t nRepeat
, wxChar ch
)
695 : wxStringBase(nRepeat
, ch
) { }
696 // ctor takes first nLength characters from C string
697 // (default value of npos means take all the string)
698 wxString(const wxChar
*psz
)
699 : wxStringBase(psz
? psz
: wxT("")) { }
700 wxString(const wxChar
*psz
, size_t nLength
)
701 : wxStringBase(psz
, nLength
) { }
702 wxString(const wxChar
*psz
,
703 const wxMBConv
& WXUNUSED(conv
),
704 size_t nLength
= npos
)
705 : wxStringBase(psz
, nLength
== npos
? wxStrlen(psz
) : nLength
) { }
707 // even if we're not built with wxUSE_STL == 1 it is very convenient to allow
708 // implicit conversions from std::string to wxString as this allows to use
709 // the same strings in non-GUI and GUI code, however we don't want to
710 // unconditionally add this ctor as it would make wx lib dependent on
711 // libstdc++ on some Linux versions which is bad, so instead we ask the
712 // client code to define this wxUSE_STD_STRING symbol if they need it
714 wxString(const wxStdString
& s
)
715 : wxStringBase(s
.c_str()) { }
716 #endif // wxUSE_STD_STRING
719 // from multibyte string
720 wxString(const char *psz
, const wxMBConv
& conv
, size_t nLength
= npos
);
721 // from wxWCharBuffer (i.e. return from wxGetString)
722 wxString(const wxWCharBuffer
& psz
) : wxStringBase(psz
.data()) { }
724 // from C string (for compilers using unsigned char)
725 wxString(const unsigned char* psz
)
726 : wxStringBase((const char*)psz
) { }
727 // from part of C string (for compilers using unsigned char)
728 wxString(const unsigned char* psz
, size_t nLength
)
729 : wxStringBase((const char*)psz
, nLength
) { }
732 // from wide (Unicode) string
733 wxString(const wchar_t *pwz
,
734 const wxMBConv
& conv
= wxConvLibc
,
735 size_t nLength
= npos
);
736 #endif // !wxUSE_WCHAR_T
739 wxString(const wxCharBuffer
& psz
)
740 : wxStringBase(psz
) { }
741 #endif // Unicode/ANSI
743 // generic attributes & operations
744 // as standard strlen()
745 size_t Len() const { return length(); }
746 // string contains any characters?
747 bool IsEmpty() const { return empty(); }
748 // empty string is "false", so !str will return true
749 bool operator!() const { return empty(); }
750 // truncate the string to given length
751 wxString
& Truncate(size_t uiLen
);
752 // empty string contents
757 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
759 // empty the string and free memory
762 wxString
tmp(wxEmptyString
);
768 bool IsAscii() const;
770 bool IsNumber() const;
774 // data access (all indexes are 0 based)
776 wxChar
GetChar(size_t n
) const
779 wxChar
& GetWritableChar(size_t n
)
782 void SetChar(size_t n
, wxChar ch
)
785 // get last character
788 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
790 return at(length() - 1);
793 // get writable last character
796 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
797 return at(length() - 1);
801 Note that we we must define all of the overloads below to avoid
802 ambiguity when using str[0]. Also note that for a conforming compiler we
803 don't need const version of operatorp[] at all as indexed access to
804 const string is provided by implicit conversion to "const wxChar *"
805 below and defining them would only result in ambiguities, but some other
806 compilers refuse to compile "str[0]" without them.
809 #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__MWERKS__)
810 wxChar
operator[](int n
) const
811 { return wxStringBase::at(n
); }
812 wxChar
operator[](size_type n
) const
813 { return wxStringBase::at(n
); }
814 #ifndef wxSIZE_T_IS_UINT
815 wxChar
operator[](unsigned int n
) const
816 { return wxStringBase::at(n
); }
817 #endif // size_t != unsigned int
818 #endif // broken compiler
821 // operator versions of GetWriteableChar()
822 wxChar
& operator[](int n
)
823 { return wxStringBase::at(n
); }
824 wxChar
& operator[](size_type n
)
825 { return wxStringBase::at(n
); }
826 #ifndef wxSIZE_T_IS_UINT
827 wxChar
& operator[](unsigned int n
)
828 { return wxStringBase::at(n
); }
829 #endif // size_t != unsigned int
831 // implicit conversion to C string
832 operator const wxChar
*() const { return c_str(); }
834 // identical to c_str(), for wxWin 1.6x compatibility
835 const wxChar
* wx_str() const { return c_str(); }
836 // identical to c_str(), for MFC compatibility
837 const wxChar
* GetData() const { return c_str(); }
839 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
840 // converting numbers or strings which are certain not to contain special
841 // chars (typically system functions, X atoms, environment variables etc.)
843 // the behaviour of these functions with the strings containing anything
844 // else than 7 bit ASCII characters is undefined, use at your own risk.
846 static wxString
FromAscii(const char *ascii
); // string
847 static wxString
FromAscii(const char ascii
); // char
848 const wxCharBuffer
ToAscii() const;
850 static wxString
FromAscii(const char *ascii
) { return wxString( ascii
); }
851 static wxString
FromAscii(const char ascii
) { return wxString( ascii
); }
852 const char *ToAscii() const { return c_str(); }
853 #endif // Unicode/!Unicode
855 // conversions with (possible) format conversions: have to return a
856 // buffer with temporary data
858 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
859 // return an ANSI (multibyte) string, wc_str() to return a wide string and
860 // fn_str() to return a string which should be used with the OS APIs
861 // accepting the file names. The return value is always the same, but the
862 // type differs because a function may either return pointer to the buffer
863 // directly or have to use intermediate buffer for translation.
865 const wxCharBuffer
mb_str(const wxMBConv
& conv
= wxConvLibc
) const;
867 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
869 const wxChar
* wc_str() const { return c_str(); }
871 // for compatibility with !wxUSE_UNICODE version
872 const wxChar
* wc_str(const wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
875 const wxCharBuffer
fn_str() const { return mb_str(wxConvFile
); }
877 const wxChar
* fn_str() const { return c_str(); }
878 #endif // wxMBFILES/!wxMBFILES
880 const wxChar
* mb_str() const { return c_str(); }
882 // for compatibility with wxUSE_UNICODE version
883 const wxChar
* mb_str(const wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
885 const wxWX2MBbuf
mbc_str() const { return mb_str(); }
888 const wxWCharBuffer
wc_str(const wxMBConv
& conv
) const;
889 #endif // wxUSE_WCHAR_T
891 const wxCharBuffer
fn_str() const { return wxConvFile
.cWC2WX( wc_str( wxConvLocal
) ); }
893 const wxChar
* fn_str() const { return c_str(); }
895 #endif // Unicode/ANSI
897 // overloaded assignment
898 // from another wxString
899 wxString
& operator=(const wxStringBase
& stringSrc
)
900 { return (wxString
&)wxStringBase::operator=(stringSrc
); }
902 wxString
& operator=(wxChar ch
)
903 { return (wxString
&)wxStringBase::operator=(ch
); }
904 // from a C string - STL probably will crash on NULL,
905 // so we need to compensate in that case
907 wxString
& operator=(const wxChar
*psz
)
908 { if(psz
) wxStringBase::operator=(psz
); else Clear(); return *this; }
910 wxString
& operator=(const wxChar
*psz
)
911 { return (wxString
&)wxStringBase::operator=(psz
); }
915 // from wxWCharBuffer
916 wxString
& operator=(const wxWCharBuffer
& psz
)
917 { (void) operator=((const wchar_t *)psz
); return *this; }
919 // from another kind of C string
920 wxString
& operator=(const unsigned char* psz
);
922 // from a wide string
923 wxString
& operator=(const wchar_t *pwz
);
926 wxString
& operator=(const wxCharBuffer
& psz
)
927 { (void) operator=((const char *)psz
); return *this; }
928 #endif // Unicode/ANSI
930 // string concatenation
931 // in place concatenation
933 Concatenate and return the result. Note that the left to right
934 associativity of << allows to write things like "str << str1 << str2
935 << ..." (unlike with +=)
938 wxString
& operator<<(const wxString
& s
)
941 wxASSERT_MSG( s
.GetStringData()->IsValid(),
942 _T("did you forget to call UngetWriteBuf()?") );
948 // string += C string
949 wxString
& operator<<(const wxChar
*psz
)
950 { append(psz
); return *this; }
952 wxString
& operator<<(wxChar ch
) { append(1, ch
); return *this; }
954 // string += buffer (i.e. from wxGetString)
956 wxString
& operator<<(const wxWCharBuffer
& s
)
957 { (void)operator<<((const wchar_t *)s
); return *this; }
958 void operator+=(const wxWCharBuffer
& s
)
959 { (void)operator<<((const wchar_t *)s
); }
960 #else // !wxUSE_UNICODE
961 wxString
& operator<<(const wxCharBuffer
& s
)
962 { (void)operator<<((const char *)s
); return *this; }
963 void operator+=(const wxCharBuffer
& s
)
964 { (void)operator<<((const char *)s
); }
965 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
967 // string += C string
968 wxString
& Append(const wxString
& s
)
970 // test for empty() to share the string if possible
977 wxString
& Append(const wxChar
* psz
)
978 { append(psz
); return *this; }
979 // append count copies of given character
980 wxString
& Append(wxChar ch
, size_t count
= 1u)
981 { append(count
, ch
); return *this; }
982 wxString
& Append(const wxChar
* psz
, size_t nLen
)
983 { append(psz
, nLen
); return *this; }
985 // prepend a string, return the string itself
986 wxString
& Prepend(const wxString
& str
)
987 { *this = str
+ *this; return *this; }
989 // non-destructive concatenation
991 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
,
992 const wxString
& string2
);
993 // string with a single char
994 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxChar ch
);
995 // char with a string
996 friend wxString WXDLLIMPEXP_BASE
operator+(wxChar ch
, const wxString
& string
);
997 // string with C string
998 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
,
1000 // C string with string
1001 friend wxString WXDLLIMPEXP_BASE
operator+(const wxChar
*psz
,
1002 const wxString
& string
);
1004 // stream-like functions
1005 // insert an int into string
1006 wxString
& operator<<(int i
)
1007 { return (*this) << Format(_T("%d"), i
); }
1008 // insert an unsigned int into string
1009 wxString
& operator<<(unsigned int ui
)
1010 { return (*this) << Format(_T("%u"), ui
); }
1011 // insert a long into string
1012 wxString
& operator<<(long l
)
1013 { return (*this) << Format(_T("%ld"), l
); }
1014 // insert an unsigned long into string
1015 wxString
& operator<<(unsigned long ul
)
1016 { return (*this) << Format(_T("%lu"), ul
); }
1017 #if defined wxLongLong_t && !defined wxLongLongIsLong
1018 // insert a long long if they exist and aren't longs
1019 wxString
& operator<<(wxLongLong_t ll
)
1021 const wxChar
*fmt
= _T("%") wxLongLongFmtSpec
_T("d");
1022 return (*this) << Format(fmt
, ll
);
1024 // insert an unsigned long long
1025 wxString
& operator<<(wxULongLong_t ull
)
1027 const wxChar
*fmt
= _T("%") wxLongLongFmtSpec
_T("u");
1028 return (*this) << Format(fmt
, ull
);
1031 // insert a float into string
1032 wxString
& operator<<(float f
)
1033 { return (*this) << Format(_T("%f"), f
); }
1034 // insert a double into string
1035 wxString
& operator<<(double d
)
1036 { return (*this) << Format(_T("%g"), d
); }
1038 // string comparison
1039 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
1040 int Cmp(const wxChar
*psz
) const;
1041 int Cmp(const wxString
& s
) const;
1042 // same as Cmp() but not case-sensitive
1043 int CmpNoCase(const wxChar
*psz
) const;
1044 int CmpNoCase(const wxString
& s
) const;
1045 // test for the string equality, either considering case or not
1046 // (if compareWithCase then the case matters)
1047 bool IsSameAs(const wxChar
*psz
, bool compareWithCase
= true) const
1048 { return (compareWithCase
? Cmp(psz
) : CmpNoCase(psz
)) == 0; }
1049 // comparison with a single character: returns true if equal
1050 bool IsSameAs(wxChar c
, bool compareWithCase
= true) const
1052 return (length() == 1) && (compareWithCase
? GetChar(0u) == c
1053 : wxToupper(GetChar(0u)) == wxToupper(c
));
1056 // simple sub-string extraction
1057 // return substring starting at nFirst of length nCount (or till the end
1058 // if nCount = default value)
1059 wxString
Mid(size_t nFirst
, size_t nCount
= npos
) const;
1061 // operator version of Mid()
1062 wxString
operator()(size_t start
, size_t len
) const
1063 { return Mid(start
, len
); }
1065 // check if the string starts with the given prefix and return the rest
1066 // of the string in the provided pointer if it is not NULL; otherwise
1068 bool StartsWith(const wxChar
*prefix
, wxString
*rest
= NULL
) const;
1069 // check if the string ends with the given suffix and return the
1070 // beginning of the string before the suffix in the provided pointer if
1071 // it is not NULL; otherwise return false
1072 bool EndsWith(const wxChar
*suffix
, wxString
*rest
= NULL
) const;
1074 // get first nCount characters
1075 wxString
Left(size_t nCount
) const;
1076 // get last nCount characters
1077 wxString
Right(size_t nCount
) const;
1078 // get all characters before the first occurance of ch
1079 // (returns the whole string if ch not found)
1080 wxString
BeforeFirst(wxChar ch
) const;
1081 // get all characters before the last occurence of ch
1082 // (returns empty string if ch not found)
1083 wxString
BeforeLast(wxChar ch
) const;
1084 // get all characters after the first occurence of ch
1085 // (returns empty string if ch not found)
1086 wxString
AfterFirst(wxChar ch
) const;
1087 // get all characters after the last occurence of ch
1088 // (returns the whole string if ch not found)
1089 wxString
AfterLast(wxChar ch
) const;
1091 // for compatibility only, use more explicitly named functions above
1092 wxString
Before(wxChar ch
) const { return BeforeLast(ch
); }
1093 wxString
After(wxChar ch
) const { return AfterFirst(ch
); }
1096 // convert to upper case in place, return the string itself
1097 wxString
& MakeUpper();
1098 // convert to upper case, return the copy of the string
1099 // Here's something to remember: BC++ doesn't like returns in inlines.
1100 wxString
Upper() const ;
1101 // convert to lower case in place, return the string itself
1102 wxString
& MakeLower();
1103 // convert to lower case, return the copy of the string
1104 wxString
Lower() const ;
1106 // trimming/padding whitespace (either side) and truncating
1107 // remove spaces from left or from right (default) side
1108 wxString
& Trim(bool bFromRight
= true);
1109 // add nCount copies chPad in the beginning or at the end (default)
1110 wxString
& Pad(size_t nCount
, wxChar chPad
= wxT(' '), bool bFromRight
= true);
1112 // searching and replacing
1113 // searching (return starting index, or -1 if not found)
1114 int Find(wxChar ch
, bool bFromEnd
= false) const; // like strchr/strrchr
1115 // searching (return starting index, or -1 if not found)
1116 int Find(const wxChar
*pszSub
) const; // like strstr
1117 // replace first (or all of bReplaceAll) occurences of substring with
1118 // another string, returns the number of replacements made
1119 size_t Replace(const wxChar
*szOld
,
1120 const wxChar
*szNew
,
1121 bool bReplaceAll
= true);
1123 // check if the string contents matches a mask containing '*' and '?'
1124 bool Matches(const wxChar
*szMask
) const;
1126 // conversion to numbers: all functions return true only if the whole
1127 // string is a number and put the value of this number into the pointer
1128 // provided, the base is the numeric base in which the conversion should be
1129 // done and must be comprised between 2 and 36 or be 0 in which case the
1130 // standard C rules apply (leading '0' => octal, "0x" => hex)
1131 // convert to a signed integer
1132 bool ToLong(long *val
, int base
= 10) const;
1133 // convert to an unsigned integer
1134 bool ToULong(unsigned long *val
, int base
= 10) const;
1135 // convert to wxLongLong
1136 #if defined(wxLongLong_t)
1137 bool ToLongLong(wxLongLong_t
*val
, int base
= 10) const;
1138 // convert to wxULongLong
1139 bool ToULongLong(wxULongLong_t
*val
, int base
= 10) const;
1140 #endif // wxLongLong_t
1141 // convert to a double
1142 bool ToDouble(double *val
) const;
1146 // formatted input/output
1147 // as sprintf(), returns the number of characters written or < 0 on error
1148 // (take 'this' into account in attribute parameter count)
1149 int Printf(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_2
;
1150 // as vprintf(), returns the number of characters written or < 0 on error
1151 int PrintfV(const wxChar
* pszFormat
, va_list argptr
);
1153 // returns the string containing the result of Printf() to it
1154 static wxString
Format(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_1
;
1155 // the same as above, but takes a va_list
1156 static wxString
FormatV(const wxChar
*pszFormat
, va_list argptr
);
1158 // raw access to string memory
1159 // ensure that string has space for at least nLen characters
1160 // only works if the data of this string is not shared
1161 bool Alloc(size_t nLen
) { reserve(nLen
); /*return capacity() >= nLen;*/ return true; }
1162 // minimize the string's memory
1163 // only works if the data of this string is not shared
1166 // get writable buffer of at least nLen bytes. Unget() *must* be called
1167 // a.s.a.p. to put string back in a reasonable state!
1168 wxChar
*GetWriteBuf(size_t nLen
);
1169 // call this immediately after GetWriteBuf() has been used
1170 void UngetWriteBuf();
1171 void UngetWriteBuf(size_t nLen
);
1174 // wxWidgets version 1 compatibility functions
1177 wxString
SubString(size_t from
, size_t to
) const
1178 { return Mid(from
, (to
- from
+ 1)); }
1179 // values for second parameter of CompareTo function
1180 enum caseCompare
{exact
, ignoreCase
};
1181 // values for first parameter of Strip function
1182 enum stripType
{leading
= 0x1, trailing
= 0x2, both
= 0x3};
1185 // (take 'this' into account in attribute parameter count)
1186 int sprintf(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_2
;
1189 inline int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const
1190 { return cmp
== exact
? Cmp(psz
) : CmpNoCase(psz
); }
1193 size_t Length() const { return length(); }
1194 // Count the number of characters
1195 int Freq(wxChar ch
) const;
1197 void LowerCase() { MakeLower(); }
1199 void UpperCase() { MakeUpper(); }
1200 // use Trim except that it doesn't change this string
1201 wxString
Strip(stripType w
= trailing
) const;
1203 // use Find (more general variants not yet supported)
1204 size_t Index(const wxChar
* psz
) const { return Find(psz
); }
1205 size_t Index(wxChar ch
) const { return Find(ch
); }
1207 wxString
& Remove(size_t pos
) { return Truncate(pos
); }
1208 wxString
& RemoveLast(size_t n
= 1) { return Truncate(length() - n
); }
1210 wxString
& Remove(size_t nStart
, size_t nLen
)
1211 { return (wxString
&)erase( nStart
, nLen
); }
1214 int First( const wxChar ch
) const { return Find(ch
); }
1215 int First( const wxChar
* psz
) const { return Find(psz
); }
1216 int First( const wxString
&str
) const { return Find(str
); }
1217 int Last( const wxChar ch
) const { return Find(ch
, true); }
1218 bool Contains(const wxString
& str
) const { return Find(str
) != wxNOT_FOUND
; }
1221 bool IsNull() const { return empty(); }
1223 // std::string compatibility functions
1225 // take nLen chars starting at nPos
1226 wxString(const wxString
& str
, size_t nPos
, size_t nLen
)
1227 : wxStringBase(str
, nPos
, nLen
) { }
1228 // take all characters from pStart to pEnd
1229 wxString(const void *pStart
, const void *pEnd
)
1230 : wxStringBase((const wxChar
*)pStart
, (const wxChar
*)pEnd
) { }
1232 wxString(const_iterator first
, const_iterator last
)
1233 : wxStringBase(first
, last
) { }
1236 // lib.string.modifiers
1237 // append elements str[pos], ..., str[pos+n]
1238 wxString
& append(const wxString
& str
, size_t pos
, size_t n
)
1239 { return (wxString
&)wxStringBase::append(str
, pos
, n
); }
1241 wxString
& append(const wxString
& str
)
1242 { return (wxString
&)wxStringBase::append(str
); }
1243 // append first n (or all if n == npos) characters of sz
1244 wxString
& append(const wxChar
*sz
)
1245 { return (wxString
&)wxStringBase::append(sz
); }
1246 wxString
& append(const wxChar
*sz
, size_t n
)
1247 { return (wxString
&)wxStringBase::append(sz
, n
); }
1248 // append n copies of ch
1249 wxString
& append(size_t n
, wxChar ch
)
1250 { return (wxString
&)wxStringBase::append(n
, ch
); }
1251 // append from first to last
1252 wxString
& append(const_iterator first
, const_iterator last
)
1253 { return (wxString
&)wxStringBase::append(first
, last
); }
1255 // same as `this_string = str'
1256 wxString
& assign(const wxString
& str
)
1257 { return (wxString
&)wxStringBase::assign(str
); }
1258 // same as ` = str[pos..pos + n]
1259 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
)
1260 { return (wxString
&)wxStringBase::assign(str
, pos
, n
); }
1261 // same as `= first n (or all if n == npos) characters of sz'
1262 wxString
& assign(const wxChar
*sz
)
1263 { return (wxString
&)wxStringBase::assign(sz
); }
1264 wxString
& assign(const wxChar
*sz
, size_t n
)
1265 { return (wxString
&)wxStringBase::assign(sz
, n
); }
1266 // same as `= n copies of ch'
1267 wxString
& assign(size_t n
, wxChar ch
)
1268 { return (wxString
&)wxStringBase::assign(n
, ch
); }
1269 // assign from first to last
1270 wxString
& assign(const_iterator first
, const_iterator last
)
1271 { return (wxString
&)wxStringBase::assign(first
, last
); }
1273 // string comparison
1274 #if !defined(HAVE_STD_STRING_COMPARE)
1275 int compare(const wxStringBase
& str
) const;
1276 // comparison with a substring
1277 int compare(size_t nStart
, size_t nLen
, const wxStringBase
& str
) const;
1278 // comparison of 2 substrings
1279 int compare(size_t nStart
, size_t nLen
,
1280 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
) const;
1281 // just like strcmp()
1282 int compare(const wxChar
* sz
) const;
1283 // substring comparison with first nCount characters of sz
1284 int compare(size_t nStart
, size_t nLen
,
1285 const wxChar
* sz
, size_t nCount
= npos
) const;
1286 #endif // !defined HAVE_STD_STRING_COMPARE
1288 // insert another string
1289 wxString
& insert(size_t nPos
, const wxString
& str
)
1290 { return (wxString
&)wxStringBase::insert(nPos
, str
); }
1291 // insert n chars of str starting at nStart (in str)
1292 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
)
1293 { return (wxString
&)wxStringBase::insert(nPos
, str
, nStart
, n
); }
1294 // insert first n (or all if n == npos) characters of sz
1295 wxString
& insert(size_t nPos
, const wxChar
*sz
)
1296 { return (wxString
&)wxStringBase::insert(nPos
, sz
); }
1297 wxString
& insert(size_t nPos
, const wxChar
*sz
, size_t n
)
1298 { return (wxString
&)wxStringBase::insert(nPos
, sz
, n
); }
1299 // insert n copies of ch
1300 wxString
& insert(size_t nPos
, size_t n
, wxChar ch
)
1301 { return (wxString
&)wxStringBase::insert(nPos
, n
, ch
); }
1302 iterator
insert(iterator it
, wxChar ch
)
1303 { return wxStringBase::insert(it
, ch
); }
1304 void insert(iterator it
, const_iterator first
, const_iterator last
)
1305 { wxStringBase::insert(it
, first
, last
); }
1306 void insert(iterator it
, size_type n
, wxChar ch
)
1307 { wxStringBase::insert(it
, n
, ch
); }
1309 // delete characters from nStart to nStart + nLen
1310 wxString
& erase(size_type pos
= 0, size_type n
= npos
)
1311 { return (wxString
&)wxStringBase::erase(pos
, n
); }
1312 iterator
erase(iterator first
, iterator last
)
1313 { return wxStringBase::erase(first
, last
); }
1314 iterator
erase(iterator first
)
1315 { return wxStringBase::erase(first
); }
1317 #ifdef wxSTRING_BASE_HASNT_CLEAR
1318 void clear() { erase(); }
1321 // replaces the substring of length nLen starting at nStart
1322 wxString
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
)
1323 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, sz
); }
1324 // replaces the substring of length nLen starting at nStart
1325 wxString
& replace(size_t nStart
, size_t nLen
, const wxString
& str
)
1326 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, str
); }
1327 // replaces the substring with nCount copies of ch
1328 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
)
1329 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, nCount
, ch
); }
1330 // replaces a substring with another substring
1331 wxString
& replace(size_t nStart
, size_t nLen
,
1332 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1333 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, str
,
1335 // replaces the substring with first nCount chars of sz
1336 wxString
& replace(size_t nStart
, size_t nLen
,
1337 const wxChar
* sz
, size_t nCount
)
1338 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, sz
, nCount
); }
1339 wxString
& replace(iterator first
, iterator last
, const_pointer s
)
1340 { return (wxString
&)wxStringBase::replace(first
, last
, s
); }
1341 wxString
& replace(iterator first
, iterator last
, const_pointer s
,
1343 { return (wxString
&)wxStringBase::replace(first
, last
, s
, n
); }
1344 wxString
& replace(iterator first
, iterator last
, const wxString
& s
)
1345 { return (wxString
&)wxStringBase::replace(first
, last
, s
); }
1346 wxString
& replace(iterator first
, iterator last
, size_type n
, wxChar c
)
1347 { return (wxString
&)wxStringBase::replace(first
, last
, n
, c
); }
1348 wxString
& replace(iterator first
, iterator last
,
1349 const_iterator first1
, const_iterator last1
)
1350 { return (wxString
&)wxStringBase::replace(first
, last
, first1
, last1
); }
1353 wxString
& operator+=(const wxString
& s
)
1354 { return (wxString
&)wxStringBase::operator+=(s
); }
1355 // string += C string
1356 wxString
& operator+=(const wxChar
*psz
)
1357 { return (wxString
&)wxStringBase::operator+=(psz
); }
1359 wxString
& operator+=(wxChar ch
)
1360 { return (wxString
&)wxStringBase::operator+=(ch
); }
1363 // notice that even though for many compilers the friend declarations above are
1364 // enough, from the point of view of C++ standard we must have the declarations
1365 // here as friend ones are not injected in the enclosing namespace and without
1366 // them the code fails to compile with conforming compilers such as xlC or g++4
1367 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
, const wxString
& string2
);
1368 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxChar ch
);
1369 wxString WXDLLIMPEXP_BASE
operator+(wxChar ch
, const wxString
& string
);
1370 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, const wxChar
*psz
);
1371 wxString WXDLLIMPEXP_BASE
operator+(const wxChar
*psz
, const wxString
& string
);
1374 // define wxArrayString, for compatibility
1375 #if WXWIN_COMPATIBILITY_2_4 && !wxUSE_STL
1376 #include "wx/arrstr.h"
1380 // return an empty wxString (not very useful with wxUSE_STL == 1)
1381 inline const wxString
wxGetEmptyString() { return wxString(); }
1383 // return an empty wxString (more efficient than wxString() here)
1384 inline const wxString
& wxGetEmptyString()
1386 return *(wxString
*)&wxEmptyString
;
1388 #endif // wxUSE_STL/!wxUSE_STL
1390 // ----------------------------------------------------------------------------
1391 // wxStringBuffer: a tiny class allowing to get a writable pointer into string
1392 // ----------------------------------------------------------------------------
1396 class WXDLLIMPEXP_BASE wxStringBuffer
1399 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
1400 : m_str(str
), m_buf(lenWanted
)
1403 ~wxStringBuffer() { m_str
.assign(m_buf
.data(), wxStrlen(m_buf
.data())); }
1405 operator wxChar
*() { return m_buf
.data(); }
1410 wxWCharBuffer m_buf
;
1415 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
1418 class WXDLLIMPEXP_BASE wxStringBufferLength
1421 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
1422 : m_str(str
), m_buf(lenWanted
), m_len(0), m_lenSet(false)
1425 ~wxStringBufferLength()
1428 m_str
.assign(m_buf
.data(), m_len
);
1431 operator wxChar
*() { return m_buf
.data(); }
1432 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
1437 wxWCharBuffer m_buf
;
1444 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
1447 #else // if !wxUSE_STL
1449 class WXDLLIMPEXP_BASE wxStringBuffer
1452 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
1453 : m_str(str
), m_buf(NULL
)
1454 { m_buf
= m_str
.GetWriteBuf(lenWanted
); }
1456 ~wxStringBuffer() { m_str
.UngetWriteBuf(); }
1458 operator wxChar
*() const { return m_buf
; }
1464 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
1467 class WXDLLIMPEXP_BASE wxStringBufferLength
1470 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
1471 : m_str(str
), m_buf(NULL
), m_len(0), m_lenSet(false)
1473 m_buf
= m_str
.GetWriteBuf(lenWanted
);
1474 wxASSERT(m_buf
!= NULL
);
1477 ~wxStringBufferLength()
1480 m_str
.UngetWriteBuf(m_len
);
1483 operator wxChar
*() const { return m_buf
; }
1484 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
1492 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
1495 #endif // !wxUSE_STL
1497 // ---------------------------------------------------------------------------
1498 // wxString comparison functions: operator versions are always case sensitive
1499 // ---------------------------------------------------------------------------
1501 // note that when wxUSE_STL == 1 the comparison operators taking std::string
1502 // are used and defining them also for wxString would only result in
1503 // compilation ambiguities when comparing std::string and wxString
1506 inline bool operator==(const wxString
& s1
, const wxString
& s2
)
1507 { return (s1
.Len() == s2
.Len()) && (s1
.Cmp(s2
) == 0); }
1508 inline bool operator==(const wxString
& s1
, const wxChar
* s2
)
1509 { return s1
.Cmp(s2
) == 0; }
1510 inline bool operator==(const wxChar
* s1
, const wxString
& s2
)
1511 { return s2
.Cmp(s1
) == 0; }
1512 inline bool operator!=(const wxString
& s1
, const wxString
& s2
)
1513 { return (s1
.Len() != s2
.Len()) || (s1
.Cmp(s2
) != 0); }
1514 inline bool operator!=(const wxString
& s1
, const wxChar
* s2
)
1515 { return s1
.Cmp(s2
) != 0; }
1516 inline bool operator!=(const wxChar
* s1
, const wxString
& s2
)
1517 { return s2
.Cmp(s1
) != 0; }
1518 inline bool operator< (const wxString
& s1
, const wxString
& s2
)
1519 { return s1
.Cmp(s2
) < 0; }
1520 inline bool operator< (const wxString
& s1
, const wxChar
* s2
)
1521 { return s1
.Cmp(s2
) < 0; }
1522 inline bool operator< (const wxChar
* s1
, const wxString
& s2
)
1523 { return s2
.Cmp(s1
) > 0; }
1524 inline bool operator> (const wxString
& s1
, const wxString
& s2
)
1525 { return s1
.Cmp(s2
) > 0; }
1526 inline bool operator> (const wxString
& s1
, const wxChar
* s2
)
1527 { return s1
.Cmp(s2
) > 0; }
1528 inline bool operator> (const wxChar
* s1
, const wxString
& s2
)
1529 { return s2
.Cmp(s1
) < 0; }
1530 inline bool operator<=(const wxString
& s1
, const wxString
& s2
)
1531 { return s1
.Cmp(s2
) <= 0; }
1532 inline bool operator<=(const wxString
& s1
, const wxChar
* s2
)
1533 { return s1
.Cmp(s2
) <= 0; }
1534 inline bool operator<=(const wxChar
* s1
, const wxString
& s2
)
1535 { return s2
.Cmp(s1
) >= 0; }
1536 inline bool operator>=(const wxString
& s1
, const wxString
& s2
)
1537 { return s1
.Cmp(s2
) >= 0; }
1538 inline bool operator>=(const wxString
& s1
, const wxChar
* s2
)
1539 { return s1
.Cmp(s2
) >= 0; }
1540 inline bool operator>=(const wxChar
* s1
, const wxString
& s2
)
1541 { return s2
.Cmp(s1
) <= 0; }
1544 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
)
1545 { return (s1
.Cmp((const wchar_t *)s2
) == 0); }
1546 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
)
1547 { return (s2
.Cmp((const wchar_t *)s1
) == 0); }
1548 inline bool operator!=(const wxString
& s1
, const wxWCharBuffer
& s2
)
1549 { return (s1
.Cmp((const wchar_t *)s2
) != 0); }
1550 inline bool operator!=(const wxWCharBuffer
& s1
, const wxString
& s2
)
1551 { return (s2
.Cmp((const wchar_t *)s1
) != 0); }
1552 #else // !wxUSE_UNICODE
1553 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
)
1554 { return (s1
.Cmp((const char *)s2
) == 0); }
1555 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
)
1556 { return (s2
.Cmp((const char *)s1
) == 0); }
1557 inline bool operator!=(const wxString
& s1
, const wxCharBuffer
& s2
)
1558 { return (s1
.Cmp((const char *)s2
) != 0); }
1559 inline bool operator!=(const wxCharBuffer
& s1
, const wxString
& s2
)
1560 { return (s2
.Cmp((const char *)s1
) != 0); }
1561 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1564 inline wxString
operator+(const wxString
& string
, const wxWCharBuffer
& buf
)
1565 { return string
+ (const wchar_t *)buf
; }
1566 inline wxString
operator+(const wxWCharBuffer
& buf
, const wxString
& string
)
1567 { return (const wchar_t *)buf
+ string
; }
1568 #else // !wxUSE_UNICODE
1569 inline wxString
operator+(const wxString
& string
, const wxCharBuffer
& buf
)
1570 { return string
+ (const char *)buf
; }
1571 inline wxString
operator+(const wxCharBuffer
& buf
, const wxString
& string
)
1572 { return (const char *)buf
+ string
; }
1573 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1575 #endif // !wxUSE_STL
1577 // comparison with char (those are not defined by std::[w]string and so should
1578 // be always available)
1579 inline bool operator==(wxChar c
, const wxString
& s
) { return s
.IsSameAs(c
); }
1580 inline bool operator==(const wxString
& s
, wxChar c
) { return s
.IsSameAs(c
); }
1581 inline bool operator!=(wxChar c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
1582 inline bool operator!=(const wxString
& s
, wxChar c
) { return !s
.IsSameAs(c
); }
1584 // ---------------------------------------------------------------------------
1585 // Implementation only from here until the end of file
1586 // ---------------------------------------------------------------------------
1588 // don't pollute the library user's name space
1589 #undef wxASSERT_VALID_INDEX
1591 #if wxUSE_STD_IOSTREAM
1593 #include "wx/iosfwrap.h"
1595 WXDLLIMPEXP_BASE wxSTD ostream
& operator<<(wxSTD ostream
&, const wxString
&);
1597 #endif // wxSTD_STRING_COMPATIBILITY
1599 #endif // _WX_WXSTRINGH__