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 // maximum possible length for a string means "take all string" everywhere
80 #define wxSTRING_MAXLEN wxStringBase::npos
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 // global pointer to empty string
87 extern WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxEmptyString
;
89 // ---------------------------------------------------------------------------
90 // global functions complementing standard C string library replacements for
91 // strlen() and portable strcasecmp()
92 //---------------------------------------------------------------------------
94 // Use wxXXX() functions from wxchar.h instead! These functions are for
95 // backwards compatibility only.
97 // checks whether the passed in pointer is NULL and if the string is empty
98 inline bool IsEmpty(const char *p
) { return (!p
|| !*p
); }
100 // safe version of strlen() (returns 0 if passed NULL pointer)
101 inline size_t Strlen(const char *psz
)
102 { return psz
? strlen(psz
) : 0; }
104 // portable strcasecmp/_stricmp
105 inline int Stricmp(const char *psz1
, const char *psz2
)
107 #if defined(__VISUALC__) && defined(__WXWINCE__)
108 register char c1
, c2
;
110 c1
= tolower(*psz1
++);
111 c2
= tolower(*psz2
++);
112 } while ( c1
&& (c1
== c2
) );
115 #elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
116 return _stricmp(psz1
, psz2
);
117 #elif defined(__SC__)
118 return _stricmp(psz1
, psz2
);
119 #elif defined(__SALFORDC__)
120 return stricmp(psz1
, psz2
);
121 #elif defined(__BORLANDC__)
122 return stricmp(psz1
, psz2
);
123 #elif defined(__WATCOMC__)
124 return stricmp(psz1
, psz2
);
125 #elif defined(__DJGPP__)
126 return stricmp(psz1
, psz2
);
127 #elif defined(__EMX__)
128 return stricmp(psz1
, psz2
);
129 #elif defined(__WXPM__)
130 return stricmp(psz1
, psz2
);
131 #elif defined(__WXPALMOS__) || \
132 defined(HAVE_STRCASECMP_IN_STRING_H) || \
133 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
134 defined(__GNUWIN32__)
135 return strcasecmp(psz1
, psz2
);
136 #elif defined(__MWERKS__) && !defined(__INTEL__)
137 register char c1
, c2
;
139 c1
= tolower(*psz1
++);
140 c2
= tolower(*psz2
++);
141 } while ( c1
&& (c1
== c2
) );
145 // almost all compilers/libraries provide this function (unfortunately under
146 // different names), that's why we don't implement our own which will surely
147 // be more efficient than this code (uncomment to use):
149 register char c1, c2;
151 c1 = tolower(*psz1++);
152 c2 = tolower(*psz2++);
153 } while ( c1 && (c1 == c2) );
158 #error "Please define string case-insensitive compare for your OS/compiler"
159 #endif // OS/compiler
162 // ----------------------------------------------------------------------------
163 // deal with STL/non-STL/non-STL-but-wxUSE_STD_STRING
164 // ----------------------------------------------------------------------------
166 // in both cases we need to define wxStdString
167 #if wxUSE_STL || wxUSE_STD_STRING
169 #include "wx/beforestd.h"
171 #include "wx/afterstd.h"
174 #ifdef HAVE_STD_WSTRING
175 typedef std::wstring wxStdString
;
177 typedef std::basic_string
<wxChar
> wxStdString
;
180 typedef std::string wxStdString
;
183 #endif // need <string>
187 // we don't need an extra ctor from std::string when copy ctor already does
189 #undef wxUSE_STD_STRING
190 #define wxUSE_STD_STRING 0
192 #if (defined(__GNUG__) && (__GNUG__ < 3)) || \
193 (defined(_MSC_VER) && (_MSC_VER <= 1200))
194 #define wxSTRING_BASE_HASNT_CLEAR
197 typedef wxStdString wxStringBase
;
198 #else // if !wxUSE_STL
200 #if !defined(HAVE_STD_STRING_COMPARE) && \
201 (!defined(__WX_SETUP_H__) || wxUSE_STL == 0)
202 #define HAVE_STD_STRING_COMPARE
205 // ---------------------------------------------------------------------------
206 // string data prepended with some housekeeping info (used by wxString class),
207 // is never used directly (but had to be put here to allow inlining)
208 // ---------------------------------------------------------------------------
210 struct WXDLLIMPEXP_BASE wxStringData
212 int nRefs
; // reference count
213 size_t nDataLength
, // actual string length
214 nAllocLength
; // allocated memory size
216 // mimics declaration 'wxChar data[nAllocLength]'
217 wxChar
* data() const { return (wxChar
*)(this + 1); }
219 // empty string has a special ref count so it's never deleted
220 bool IsEmpty() const { return (nRefs
== -1); }
221 bool IsShared() const { return (nRefs
> 1); }
224 void Lock() { if ( !IsEmpty() ) nRefs
++; }
226 // VC++ will refuse to inline Unlock but profiling shows that it is wrong
227 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
230 // VC++ free must take place in same DLL as allocation when using non dll
231 // run-time library (e.g. Multithreaded instead of Multithreaded DLL)
232 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
233 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) Free(); }
234 // we must not inline deallocation since allocation is not inlined
237 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) free(this); }
240 // if we had taken control over string memory (GetWriteBuf), it's
241 // intentionally put in invalid state
242 void Validate(bool b
) { nRefs
= (b
? 1 : 0); }
243 bool IsValid() const { return (nRefs
!= 0); }
246 class WXDLLIMPEXP_BASE wxStringBase
249 friend class WXDLLIMPEXP_BASE wxArrayString
;
252 // an 'invalid' value for string index, moved to this place due to a CW bug
253 static const size_t npos
;
255 // points to data preceded by wxStringData structure with ref count info
258 // accessor to string data
259 wxStringData
* GetStringData() const { return (wxStringData
*)m_pchData
- 1; }
261 // string (re)initialization functions
262 // initializes the string to the empty value (must be called only from
263 // ctors, use Reinit() otherwise)
264 void Init() { m_pchData
= (wxChar
*)wxEmptyString
; }
265 // initializaes the string with (a part of) C-string
266 void InitWith(const wxChar
*psz
, size_t nPos
= 0, size_t nLen
= npos
);
267 // as Init, but also frees old data
268 void Reinit() { GetStringData()->Unlock(); Init(); }
271 // allocates memory for string of length nLen
272 bool AllocBuffer(size_t nLen
);
273 // copies data to another string
274 bool AllocCopy(wxString
&, int, int) const;
275 // effectively copies data to string
276 bool AssignCopy(size_t, const wxChar
*);
278 // append a (sub)string
279 bool ConcatSelf(size_t nLen
, const wxChar
*src
, size_t nMaxLen
);
280 bool ConcatSelf(size_t nLen
, const wxChar
*src
)
281 { return ConcatSelf(nLen
, src
, nLen
); }
283 // functions called before writing to the string: they copy it if there
284 // are other references to our data (should be the only owner when writing)
285 bool CopyBeforeWrite();
286 bool AllocBeforeWrite(size_t);
288 // compatibility with wxString
289 bool Alloc(size_t nLen
);
292 typedef wxChar value_type
;
293 typedef wxChar char_type
;
294 typedef size_t size_type
;
295 typedef value_type
& reference
;
296 typedef const value_type
& const_reference
;
297 typedef value_type
* pointer
;
298 typedef const value_type
* const_pointer
;
299 typedef value_type
*iterator
;
300 typedef const value_type
*const_iterator
;
302 // constructors and destructor
303 // ctor for an empty string
304 wxStringBase() { Init(); }
306 wxStringBase(const wxStringBase
& stringSrc
)
308 wxASSERT_MSG( stringSrc
.GetStringData()->IsValid(),
309 _T("did you forget to call UngetWriteBuf()?") );
311 if ( stringSrc
.empty() ) {
312 // nothing to do for an empty string
316 m_pchData
= stringSrc
.m_pchData
; // share same data
317 GetStringData()->Lock(); // => one more copy
320 // string containing nRepeat copies of ch
321 wxStringBase(size_type nRepeat
, wxChar ch
);
322 // ctor takes first nLength characters from C string
323 // (default value of npos means take all the string)
324 wxStringBase(const wxChar
*psz
)
325 { InitWith(psz
, 0, npos
); }
326 wxStringBase(const wxChar
*psz
, size_t nLength
)
327 { InitWith(psz
, 0, nLength
); }
328 wxStringBase(const wxChar
*psz
, wxMBConv
& WXUNUSED(conv
), size_t nLength
= npos
)
329 { InitWith(psz
, 0, nLength
); }
330 // take nLen chars starting at nPos
331 wxStringBase(const wxStringBase
& str
, size_t nPos
, size_t nLen
)
333 wxASSERT_MSG( str
.GetStringData()->IsValid(),
334 _T("did you forget to call UngetWriteBuf()?") );
336 size_t strLen
= str
.length() - nPos
; nLen
= strLen
< nLen
? strLen
: nLen
;
337 InitWith(str
.c_str(), nPos
, nLen
);
339 // take all characters from pStart to pEnd
340 wxStringBase(const void *pStart
, const void *pEnd
);
342 // dtor is not virtual, this class must not be inherited from!
345 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
346 //RN - according to the above VC++ does indeed inline this,
347 //even though it spits out two warnings
348 #pragma warning (disable:4714)
351 GetStringData()->Unlock();
354 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
355 //re-enable inlining warning
356 #pragma warning (default:4714)
358 // overloaded assignment
359 // from another wxString
360 wxStringBase
& operator=(const wxStringBase
& stringSrc
);
362 wxStringBase
& operator=(wxChar ch
);
364 wxStringBase
& operator=(const wxChar
*psz
);
366 // return the length of the string
367 size_type
size() const { return GetStringData()->nDataLength
; }
368 // return the length of the string
369 size_type
length() const { return size(); }
370 // return the maximum size of the string
371 size_type
max_size() const { return wxSTRING_MAXLEN
; }
372 // resize the string, filling the space with c if c != 0
373 void resize(size_t nSize
, wxChar ch
= wxT('\0'));
374 // delete the contents of the string
375 void clear() { erase(0, npos
); }
376 // returns true if the string is empty
377 bool empty() const { return size() == 0; }
378 // inform string about planned change in size
379 void reserve(size_t sz
) { Alloc(sz
); }
380 size_type
capacity() const { return GetStringData()->nAllocLength
; }
383 // return the character at position n
384 value_type
at(size_type n
) const
385 { wxASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
386 // returns the writable character at position n
387 reference
at(size_type n
)
388 { wxASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
390 // lib.string.modifiers
391 // append elements str[pos], ..., str[pos+n]
392 wxStringBase
& append(const wxStringBase
& str
, size_t pos
, size_t n
)
394 wxASSERT(pos
<= str
.length());
395 ConcatSelf(n
, str
.c_str() + pos
, str
.length() - pos
);
399 wxStringBase
& append(const wxStringBase
& str
)
400 { ConcatSelf(str
.length(), str
.c_str()); return *this; }
401 // append first n (or all if n == npos) characters of sz
402 wxStringBase
& append(const wxChar
*sz
)
403 { ConcatSelf(wxStrlen(sz
), sz
); return *this; }
404 wxStringBase
& append(const wxChar
*sz
, size_t n
)
405 { ConcatSelf(n
, sz
); return *this; }
406 // append n copies of ch
407 wxStringBase
& append(size_t n
, wxChar ch
);
408 // append from first to last
409 wxStringBase
& append(const_iterator first
, const_iterator last
)
410 { ConcatSelf(last
- first
, first
); return *this; }
412 // same as `this_string = str'
413 wxStringBase
& assign(const wxStringBase
& str
)
414 { return *this = str
; }
415 // same as ` = str[pos..pos + n]
416 wxStringBase
& assign(const wxStringBase
& str
, size_t pos
, size_t n
)
417 { clear(); return append(str
, pos
, n
); }
418 // same as `= first n (or all if n == npos) characters of sz'
419 wxStringBase
& assign(const wxChar
*sz
)
420 { clear(); return append(sz
, wxStrlen(sz
)); }
421 wxStringBase
& assign(const wxChar
*sz
, size_t n
)
422 { clear(); return append(sz
, n
); }
423 // same as `= n copies of ch'
424 wxStringBase
& assign(size_t n
, wxChar ch
)
425 { clear(); return append(n
, ch
); }
426 // assign from first to last
427 wxStringBase
& assign(const_iterator first
, const_iterator last
)
428 { clear(); return append(first
, last
); }
430 // first valid index position
431 const_iterator
begin() const { return m_pchData
; }
432 // position one after the last valid one
433 const_iterator
end() const { return m_pchData
+ length(); }
435 // first valid index position
437 // position one after the last valid one
440 // insert another string
441 wxStringBase
& insert(size_t nPos
, const wxStringBase
& str
)
443 wxASSERT( str
.GetStringData()->IsValid() );
444 return insert(nPos
, str
.c_str(), str
.length());
446 // insert n chars of str starting at nStart (in str)
447 wxStringBase
& insert(size_t nPos
, const wxStringBase
& str
, size_t nStart
, size_t n
)
449 wxASSERT( str
.GetStringData()->IsValid() );
450 wxASSERT( nStart
< str
.length() );
451 size_t strLen
= str
.length() - nStart
;
452 n
= strLen
< n
? strLen
: n
;
453 return insert(nPos
, str
.c_str() + nStart
, n
);
455 // insert first n (or all if n == npos) characters of sz
456 wxStringBase
& insert(size_t nPos
, const wxChar
*sz
, size_t n
= npos
);
457 // insert n copies of ch
458 wxStringBase
& insert(size_t nPos
, size_t n
, wxChar ch
)
459 { return insert(nPos
, wxStringBase(n
, ch
)); }
460 iterator
insert(iterator it
, wxChar ch
)
461 { size_t idx
= it
- begin(); insert(idx
, 1, ch
); return begin() + idx
; }
462 void insert(iterator it
, const_iterator first
, const_iterator last
)
463 { insert(it
- begin(), first
, last
- first
); }
464 void insert(iterator it
, size_type n
, wxChar ch
)
465 { insert(it
- begin(), n
, ch
); }
467 // delete characters from nStart to nStart + nLen
468 wxStringBase
& erase(size_type pos
= 0, size_type n
= npos
);
469 iterator
erase(iterator first
, iterator last
)
471 size_t idx
= first
- begin();
472 erase(idx
, last
- first
);
473 return begin() + idx
;
475 iterator
erase(iterator first
);
477 // explicit conversion to C string (use this with printf()!)
478 const wxChar
* c_str() const { return m_pchData
; }
479 const wxChar
* data() const { return m_pchData
; }
481 // replaces the substring of length nLen starting at nStart
482 wxStringBase
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
);
483 // replaces the substring of length nLen starting at nStart
484 wxStringBase
& replace(size_t nStart
, size_t nLen
, const wxStringBase
& str
)
485 { return replace(nStart
, nLen
, str
.c_str()); }
486 // replaces the substring with nCount copies of ch
487 wxStringBase
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
);
488 // replaces a substring with another substring
489 wxStringBase
& replace(size_t nStart
, size_t nLen
,
490 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
);
491 // replaces the substring with first nCount chars of sz
492 wxStringBase
& replace(size_t nStart
, size_t nLen
,
493 const wxChar
* sz
, size_t nCount
);
494 wxStringBase
& replace(iterator first
, iterator last
, const_pointer s
)
495 { return replace(first
- begin(), last
- first
, s
); }
496 wxStringBase
& replace(iterator first
, iterator last
, const_pointer s
,
498 { return replace(first
- begin(), last
- first
, s
, n
); }
499 wxStringBase
& replace(iterator first
, iterator last
, const wxStringBase
& s
)
500 { return replace(first
- begin(), last
- first
, s
); }
501 wxStringBase
& replace(iterator first
, iterator last
, size_type n
, wxChar c
)
502 { return replace(first
- begin(), last
- first
, n
, c
); }
503 wxStringBase
& replace(iterator first
, iterator last
,
504 const_iterator first1
, const_iterator last1
)
505 { return replace(first
- begin(), last
- first
, first1
, last1
- first1
); }
508 void swap(wxStringBase
& str
);
510 // All find() functions take the nStart argument which specifies the
511 // position to start the search on, the default value is 0. All functions
512 // return npos if there were no match.
515 size_t find(const wxStringBase
& str
, size_t nStart
= 0) const;
517 // find first n characters of sz
518 size_t find(const wxChar
* sz
, size_t nStart
= 0, size_t n
= npos
) const;
520 // find the first occurence of character ch after nStart
521 size_t find(wxChar ch
, size_t nStart
= 0) const;
523 // rfind() family is exactly like find() but works right to left
525 // as find, but from the end
526 size_t rfind(const wxStringBase
& str
, size_t nStart
= npos
) const;
528 // as find, but from the end
529 size_t rfind(const wxChar
* sz
, size_t nStart
= npos
,
530 size_t n
= npos
) const;
531 // as find, but from the end
532 size_t rfind(wxChar ch
, size_t nStart
= npos
) const;
534 // find first/last occurence of any character in the set
536 // as strpbrk() but starts at nStart, returns npos if not found
537 size_t find_first_of(const wxStringBase
& str
, size_t nStart
= 0) const
538 { return find_first_of(str
.c_str(), nStart
); }
540 size_t find_first_of(const wxChar
* sz
, size_t nStart
= 0) const;
541 size_t find_first_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
542 // same as find(char, size_t)
543 size_t find_first_of(wxChar c
, size_t nStart
= 0) const
544 { return find(c
, nStart
); }
545 // find the last (starting from nStart) char from str in this string
546 size_t find_last_of (const wxStringBase
& str
, size_t nStart
= npos
) const
547 { return find_last_of(str
.c_str(), nStart
); }
549 size_t find_last_of (const wxChar
* sz
, size_t nStart
= npos
) const;
550 size_t find_last_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
552 size_t find_last_of(wxChar c
, size_t nStart
= npos
) const
553 { return rfind(c
, nStart
); }
555 // find first/last occurence of any character not in the set
557 // as strspn() (starting from nStart), returns npos on failure
558 size_t find_first_not_of(const wxStringBase
& str
, size_t nStart
= 0) const
559 { return find_first_not_of(str
.c_str(), nStart
); }
561 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
= 0) const;
562 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
564 size_t find_first_not_of(wxChar ch
, size_t nStart
= 0) const;
566 size_t find_last_not_of(const wxStringBase
& str
, size_t nStart
= npos
) const
567 { return find_last_not_of(str
.c_str(), nStart
); }
569 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
= npos
) const;
570 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const;
572 size_t find_last_not_of(wxChar ch
, size_t nStart
= npos
) const;
574 // All compare functions return -1, 0 or 1 if the [sub]string is less,
575 // equal or greater than the compare() argument.
577 // comparison with another string
578 int compare(const wxStringBase
& str
) const;
579 // comparison with a substring
580 int compare(size_t nStart
, size_t nLen
, const wxStringBase
& str
) const;
581 // comparison of 2 substrings
582 int compare(size_t nStart
, size_t nLen
,
583 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
) const;
584 // comparison with a c string
585 int compare(const wxChar
* sz
) const;
586 // substring comparison with first nCount characters of sz
587 int compare(size_t nStart
, size_t nLen
,
588 const wxChar
* sz
, size_t nCount
= npos
) const;
590 size_type
copy(wxChar
* s
, size_type n
, size_type pos
= 0);
592 // substring extraction
593 wxStringBase
substr(size_t nStart
= 0, size_t nLen
= npos
) const;
596 wxStringBase
& operator+=(const wxStringBase
& s
) { return append(s
); }
597 // string += C string
598 wxStringBase
& operator+=(const wxChar
*psz
) { return append(psz
); }
600 wxStringBase
& operator+=(wxChar ch
) { return append(1, ch
); }
605 // ----------------------------------------------------------------------------
606 // wxString: string class trying to be compatible with std::string, MFC
607 // CString and wxWindows 1.x wxString all at once
608 // ---------------------------------------------------------------------------
610 class WXDLLIMPEXP_BASE wxString
: public wxStringBase
613 friend class WXDLLIMPEXP_BASE wxArrayString
;
616 // NB: special care was taken in arranging the member functions in such order
617 // that all inline functions can be effectively inlined, verify that all
618 // performace critical functions are still inlined if you change order!
620 // if we hadn't made these operators private, it would be possible to
621 // compile "wxString s; s = 17;" without any warnings as 17 is implicitly
622 // converted to char in C and we do have operator=(char)
624 // NB: we don't need other versions (short/long and unsigned) as attempt
625 // to assign another numeric type to wxString will now result in
626 // ambiguity between operator=(char) and operator=(int)
627 wxString
& operator=(int);
629 // these methods are not implemented - there is _no_ conversion from int to
630 // string, you're doing something wrong if the compiler wants to call it!
632 // try `s << i' or `s.Printf("%d", i)' instead
636 // constructors and destructor
637 // ctor for an empty string
638 wxString() : wxStringBase() { }
640 wxString(const wxStringBase
& stringSrc
) : wxStringBase(stringSrc
) { }
641 wxString(const wxString
& stringSrc
) : wxStringBase(stringSrc
) { }
642 // string containing nRepeat copies of ch
643 wxString(wxChar ch
, size_t nRepeat
= 1)
644 : wxStringBase(nRepeat
, ch
) { }
645 wxString(size_t nRepeat
, wxChar ch
)
646 : wxStringBase(nRepeat
, ch
) { }
647 // ctor takes first nLength characters from C string
648 // (default value of npos means take all the string)
649 wxString(const wxChar
*psz
)
650 : wxStringBase(psz
? psz
: wxT("")) { }
651 wxString(const wxChar
*psz
, size_t nLength
)
652 : wxStringBase(psz
, nLength
) { }
653 wxString(const wxChar
*psz
, wxMBConv
& WXUNUSED(conv
), size_t nLength
= npos
)
654 : wxStringBase(psz
, nLength
== npos
? wxStrlen(psz
) : nLength
) { }
656 // even we're not build with wxUSE_STL == 1 it is very convenient to allow
657 // implicit conversions from std::string to wxString as this allows to use
658 // the same strings in non-GUI and GUI code, however we don't want to
659 // unconditionally add this ctor as it would make wx lib dependent on
660 // libstdc++ on some Linux versions which is bad, so instead we ask the
661 // client code to define this wxUSE_STD_STRING symbol if they need it
663 wxString(const wxStdString
& s
)
664 : wxStringBase(s
.c_str()) { }
665 #endif // wxUSE_STD_STRING
668 // from multibyte string
669 wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
= npos
);
670 // from wxWCharBuffer (i.e. return from wxGetString)
671 wxString(const wxWCharBuffer
& psz
) : wxStringBase(psz
.data()) { }
673 // from C string (for compilers using unsigned char)
674 wxString(const unsigned char* psz
, size_t nLength
= npos
)
675 : wxStringBase((const char*)psz
, nLength
) { }
678 // from wide (Unicode) string
679 wxString(const wchar_t *pwz
, wxMBConv
& conv
= wxConvLibc
, size_t nLength
= npos
);
680 #endif // !wxUSE_WCHAR_T
683 wxString(const wxCharBuffer
& psz
)
684 : wxStringBase(psz
) { }
685 #endif // Unicode/ANSI
687 // generic attributes & operations
688 // as standard strlen()
689 size_t Len() const { return length(); }
690 // string contains any characters?
691 bool IsEmpty() const { return empty(); }
692 // empty string is "false", so !str will return true
693 bool operator!() const { return IsEmpty(); }
694 // truncate the string to given length
695 wxString
& Truncate(size_t uiLen
);
696 // empty string contents
701 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
703 // empty the string and free memory
706 wxString
tmp(wxEmptyString
);
712 bool IsAscii() const;
714 bool IsNumber() const;
718 // data access (all indexes are 0 based)
720 wxChar
GetChar(size_t n
) const
723 wxChar
& GetWritableChar(size_t n
)
726 void SetChar(size_t n
, wxChar ch
)
729 // get last character
732 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
734 return at(length() - 1);
737 // get writable last character
740 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
741 return at(length() - 1);
745 Note that we we must define all of the overloads below to avoid
746 ambiguity when using str[0]. Also note that for a conforming compiler we
747 don't need const version of operatorp[] at all as indexed access to
748 const string is provided by implicit conversion to "const wxChar *"
749 below and defining them would only result in ambiguities, but some other
750 compilers refuse to compile "str[0]" without them.
753 #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__MWERKS__)
754 wxChar
operator[](int n
) const
755 { return wxStringBase::at(n
); }
756 wxChar
operator[](size_type n
) const
757 { return wxStringBase::at(n
); }
758 #ifndef wxSIZE_T_IS_UINT
759 wxChar
operator[](unsigned int n
) const
760 { return wxStringBase::at(n
); }
761 #endif // size_t != unsigned int
762 #endif // broken compiler
765 // operator versions of GetWriteableChar()
766 wxChar
& operator[](int n
)
767 { return wxStringBase::at(n
); }
768 wxChar
& operator[](size_type n
)
769 { return wxStringBase::at(n
); }
770 #ifndef wxSIZE_T_IS_UINT
771 wxChar
& operator[](unsigned int n
)
772 { return wxStringBase::at(n
); }
773 #endif // size_t != unsigned int
775 // implicit conversion to C string
776 operator const wxChar
*() const { return c_str(); }
778 // identical to c_str(), for wxWin 1.6x compatibility
779 const wxChar
* wx_str() const { return c_str(); }
780 // identical to c_str(), for MFC compatibility
781 const wxChar
* GetData() const { return c_str(); }
783 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
784 // converting numbers or strings which are certain not to contain special
785 // chars (typically system functions, X atoms, environment variables etc.)
787 // the behaviour of these functions with the strings containing anything
788 // else than 7 bit ASCII characters is undefined, use at your own risk.
790 static wxString
FromAscii(const char *ascii
); // string
791 static wxString
FromAscii(const char ascii
); // char
792 const wxCharBuffer
ToAscii() const;
794 static wxString
FromAscii(const char *ascii
) { return wxString( ascii
); }
795 static wxString
FromAscii(const char ascii
) { return wxString( ascii
); }
796 const char *ToAscii() const { return c_str(); }
797 #endif // Unicode/!Unicode
799 // conversions with (possible) format conversions: have to return a
800 // buffer with temporary data
802 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
803 // return an ANSI (multibyte) string, wc_str() to return a wide string and
804 // fn_str() to return a string which should be used with the OS APIs
805 // accepting the file names. The return value is always the same, but the
806 // type differs because a function may either return pointer to the buffer
807 // directly or have to use intermediate buffer for translation.
809 const wxCharBuffer
mb_str(wxMBConv
& conv
= wxConvLibc
) const;
811 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
813 const wxChar
* wc_str() const { return c_str(); }
815 // for compatibility with !wxUSE_UNICODE version
816 const wxChar
* wc_str(wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
819 const wxCharBuffer
fn_str() const { return mb_str(wxConvFile
); }
821 const wxChar
* fn_str() const { return c_str(); }
822 #endif // wxMBFILES/!wxMBFILES
824 const wxChar
* mb_str() const { return c_str(); }
826 // for compatibility with wxUSE_UNICODE version
827 const wxChar
* mb_str(wxMBConv
& WXUNUSED(conv
)) const { return c_str(); }
829 const wxWX2MBbuf
mbc_str() const { return mb_str(); }
832 const wxWCharBuffer
wc_str(wxMBConv
& conv
) const;
833 #endif // wxUSE_WCHAR_T
835 const wxCharBuffer
fn_str() const { return wxConvFile
.cWC2WX( wc_str( wxConvLocal
) ); }
837 const wxChar
* fn_str() const { return c_str(); }
839 #endif // Unicode/ANSI
841 // overloaded assignment
842 // from another wxString
843 wxString
& operator=(const wxStringBase
& stringSrc
)
844 { return (wxString
&)wxStringBase::operator=(stringSrc
); }
846 wxString
& operator=(wxChar ch
)
847 { return (wxString
&)wxStringBase::operator=(ch
); }
848 // from a C string - STL probably will crash on NULL,
849 // so we need to compensate in that case
851 wxString
& operator=(const wxChar
*psz
)
852 { if(psz
) wxStringBase::operator=(psz
); else Clear(); return *this; }
854 wxString
& operator=(const wxChar
*psz
)
855 { return (wxString
&)wxStringBase::operator=(psz
); }
859 // from wxWCharBuffer
860 wxString
& operator=(const wxWCharBuffer
& psz
)
861 { (void) operator=((const wchar_t *)psz
); return *this; }
863 // from another kind of C string
864 wxString
& operator=(const unsigned char* psz
);
866 // from a wide string
867 wxString
& operator=(const wchar_t *pwz
);
870 wxString
& operator=(const wxCharBuffer
& psz
)
871 { (void) operator=((const char *)psz
); return *this; }
872 #endif // Unicode/ANSI
874 // string concatenation
875 // in place concatenation
877 Concatenate and return the result. Note that the left to right
878 associativity of << allows to write things like "str << str1 << str2
879 << ..." (unlike with +=)
882 wxString
& operator<<(const wxString
& s
)
885 wxASSERT_MSG( s
.GetStringData()->IsValid(),
886 _T("did you forget to call UngetWriteBuf()?") );
892 // string += C string
893 wxString
& operator<<(const wxChar
*psz
)
894 { append(psz
); return *this; }
896 wxString
& operator<<(wxChar ch
) { append(1, ch
); return *this; }
898 // string += buffer (i.e. from wxGetString)
900 wxString
& operator<<(const wxWCharBuffer
& s
)
901 { (void)operator<<((const wchar_t *)s
); return *this; }
902 void operator+=(const wxWCharBuffer
& s
)
903 { (void)operator<<((const wchar_t *)s
); }
904 #else // !wxUSE_UNICODE
905 wxString
& operator<<(const wxCharBuffer
& s
)
906 { (void)operator<<((const char *)s
); return *this; }
907 void operator+=(const wxCharBuffer
& s
)
908 { (void)operator<<((const char *)s
); }
909 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
911 // string += C string
912 wxString
& Append(const wxString
& s
)
914 // test for empty() to share the string if possible
921 wxString
& Append(const wxChar
* psz
)
922 { append(psz
); return *this; }
923 // append count copies of given character
924 wxString
& Append(wxChar ch
, size_t count
= 1u)
925 { append(count
, ch
); return *this; }
926 wxString
& Append(const wxChar
* psz
, size_t nLen
)
927 { append(psz
, nLen
); return *this; }
929 // prepend a string, return the string itself
930 wxString
& Prepend(const wxString
& str
)
931 { *this = str
+ *this; return *this; }
933 // non-destructive concatenation
935 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
, const wxString
& string2
);
937 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxChar ch
);
939 friend wxString WXDLLIMPEXP_BASE
operator+(wxChar ch
, const wxString
& string
);
941 friend wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, const wxChar
*psz
);
943 friend wxString WXDLLIMPEXP_BASE
operator+(const wxChar
*psz
, const wxString
& string
);
945 // stream-like functions
946 // insert an int into string
947 wxString
& operator<<(int i
)
948 { return (*this) << Format(_T("%d"), i
); }
949 // insert an unsigned int into string
950 wxString
& operator<<(unsigned int ui
)
951 { return (*this) << Format(_T("%u"), ui
); }
952 // insert a long into string
953 wxString
& operator<<(long l
)
954 { return (*this) << Format(_T("%ld"), l
); }
955 // insert an unsigned long into string
956 wxString
& operator<<(unsigned long ul
)
957 { return (*this) << Format(_T("%lu"), ul
); }
958 // insert a float into string
959 wxString
& operator<<(float f
)
960 { return (*this) << Format(_T("%f"), f
); }
961 // insert a double into string
962 wxString
& operator<<(double d
)
963 { return (*this) << Format(_T("%g"), d
); }
966 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
967 int Cmp(const wxChar
*psz
) const;
968 int Cmp(const wxString
& s
) const;
969 // same as Cmp() but not case-sensitive
970 int CmpNoCase(const wxChar
*psz
) const;
971 int CmpNoCase(const wxString
& s
) const;
972 // test for the string equality, either considering case or not
973 // (if compareWithCase then the case matters)
974 bool IsSameAs(const wxChar
*psz
, bool compareWithCase
= true) const
975 { return (compareWithCase
? Cmp(psz
) : CmpNoCase(psz
)) == 0; }
976 // comparison with a signle character: returns true if equal
977 bool IsSameAs(wxChar c
, bool compareWithCase
= true) const
979 return (length() == 1) && (compareWithCase
? GetChar(0u) == c
980 : wxToupper(GetChar(0u)) == wxToupper(c
));
983 // simple sub-string extraction
984 // return substring starting at nFirst of length nCount (or till the end
985 // if nCount = default value)
986 wxString
Mid(size_t nFirst
, size_t nCount
= npos
) const;
988 // operator version of Mid()
989 wxString
operator()(size_t start
, size_t len
) const
990 { return Mid(start
, len
); }
992 // check that the string starts with prefix and return the rest of the
993 // string in the provided pointer if it is not NULL, otherwise return
995 bool StartsWith(const wxChar
*prefix
, wxString
*rest
= NULL
) const;
997 // get first nCount characters
998 wxString
Left(size_t nCount
) const;
999 // get last nCount characters
1000 wxString
Right(size_t nCount
) const;
1001 // get all characters before the first occurance of ch
1002 // (returns the whole string if ch not found)
1003 wxString
BeforeFirst(wxChar ch
) const;
1004 // get all characters before the last occurence of ch
1005 // (returns empty string if ch not found)
1006 wxString
BeforeLast(wxChar ch
) const;
1007 // get all characters after the first occurence of ch
1008 // (returns empty string if ch not found)
1009 wxString
AfterFirst(wxChar ch
) const;
1010 // get all characters after the last occurence of ch
1011 // (returns the whole string if ch not found)
1012 wxString
AfterLast(wxChar ch
) const;
1014 // for compatibility only, use more explicitly named functions above
1015 wxString
Before(wxChar ch
) const { return BeforeLast(ch
); }
1016 wxString
After(wxChar ch
) const { return AfterFirst(ch
); }
1019 // convert to upper case in place, return the string itself
1020 wxString
& MakeUpper();
1021 // convert to upper case, return the copy of the string
1022 // Here's something to remember: BC++ doesn't like returns in inlines.
1023 wxString
Upper() const ;
1024 // convert to lower case in place, return the string itself
1025 wxString
& MakeLower();
1026 // convert to lower case, return the copy of the string
1027 wxString
Lower() const ;
1029 // trimming/padding whitespace (either side) and truncating
1030 // remove spaces from left or from right (default) side
1031 wxString
& Trim(bool bFromRight
= true);
1032 // add nCount copies chPad in the beginning or at the end (default)
1033 wxString
& Pad(size_t nCount
, wxChar chPad
= wxT(' '), bool bFromRight
= true);
1035 // searching and replacing
1036 // searching (return starting index, or -1 if not found)
1037 int Find(wxChar ch
, bool bFromEnd
= false) const; // like strchr/strrchr
1038 // searching (return starting index, or -1 if not found)
1039 int Find(const wxChar
*pszSub
) const; // like strstr
1040 // replace first (or all of bReplaceAll) occurences of substring with
1041 // another string, returns the number of replacements made
1042 size_t Replace(const wxChar
*szOld
,
1043 const wxChar
*szNew
,
1044 bool bReplaceAll
= true);
1046 // check if the string contents matches a mask containing '*' and '?'
1047 bool Matches(const wxChar
*szMask
) const;
1049 // conversion to numbers: all functions return true only if the whole
1050 // string is a number and put the value of this number into the pointer
1051 // provided, the base is the numeric base in which the conversion should be
1052 // done and must be comprised between 2 and 36 or be 0 in which case the
1053 // standard C rules apply (leading '0' => octal, "0x" => hex)
1054 // convert to a signed integer
1055 bool ToLong(long *val
, int base
= 10) const;
1056 // convert to an unsigned integer
1057 bool ToULong(unsigned long *val
, int base
= 10) const;
1058 // convert to a double
1059 bool ToDouble(double *val
) const;
1061 // formated input/output
1062 // as sprintf(), returns the number of characters written or < 0 on error
1063 // (take 'this' into account in attribute parameter count)
1064 int Printf(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_2
;
1065 // as vprintf(), returns the number of characters written or < 0 on error
1066 int PrintfV(const wxChar
* pszFormat
, va_list argptr
);
1068 // returns the string containing the result of Printf() to it
1069 static wxString
Format(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_1
;
1070 // the same as above, but takes a va_list
1071 static wxString
FormatV(const wxChar
*pszFormat
, va_list argptr
);
1073 // raw access to string memory
1074 // ensure that string has space for at least nLen characters
1075 // only works if the data of this string is not shared
1076 bool Alloc(size_t nLen
) { reserve(nLen
); /*return capacity() >= nLen;*/ return true; }
1077 // minimize the string's memory
1078 // only works if the data of this string is not shared
1081 // get writable buffer of at least nLen bytes. Unget() *must* be called
1082 // a.s.a.p. to put string back in a reasonable state!
1083 wxChar
*GetWriteBuf(size_t nLen
);
1084 // call this immediately after GetWriteBuf() has been used
1085 void UngetWriteBuf();
1086 void UngetWriteBuf(size_t nLen
);
1089 // wxWidgets version 1 compatibility functions
1092 wxString
SubString(size_t from
, size_t to
) const
1093 { return Mid(from
, (to
- from
+ 1)); }
1094 // values for second parameter of CompareTo function
1095 enum caseCompare
{exact
, ignoreCase
};
1096 // values for first parameter of Strip function
1097 enum stripType
{leading
= 0x1, trailing
= 0x2, both
= 0x3};
1100 // (take 'this' into account in attribute parameter count)
1101 int sprintf(const wxChar
*pszFormat
, ...) ATTRIBUTE_PRINTF_2
;
1104 inline int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const
1105 { return cmp
== exact
? Cmp(psz
) : CmpNoCase(psz
); }
1108 size_t Length() const { return length(); }
1109 // Count the number of characters
1110 int Freq(wxChar ch
) const;
1112 void LowerCase() { MakeLower(); }
1114 void UpperCase() { MakeUpper(); }
1115 // use Trim except that it doesn't change this string
1116 wxString
Strip(stripType w
= trailing
) const;
1118 // use Find (more general variants not yet supported)
1119 size_t Index(const wxChar
* psz
) const { return Find(psz
); }
1120 size_t Index(wxChar ch
) const { return Find(ch
); }
1122 wxString
& Remove(size_t pos
) { return Truncate(pos
); }
1123 wxString
& RemoveLast(size_t n
= 1) { return Truncate(length() - n
); }
1125 wxString
& Remove(size_t nStart
, size_t nLen
)
1126 { return (wxString
&)erase( nStart
, nLen
); }
1129 int First( const wxChar ch
) const { return Find(ch
); }
1130 int First( const wxChar
* psz
) const { return Find(psz
); }
1131 int First( const wxString
&str
) const { return Find(str
); }
1132 int Last( const wxChar ch
) const { return Find(ch
, true); }
1133 bool Contains(const wxString
& str
) const { return Find(str
) != wxNOT_FOUND
; }
1136 bool IsNull() const { return empty(); }
1138 // std::string compatibility functions
1140 // take nLen chars starting at nPos
1141 wxString(const wxString
& str
, size_t nPos
, size_t nLen
)
1142 : wxStringBase(str
, nPos
, nLen
) { }
1143 // take all characters from pStart to pEnd
1144 wxString(const void *pStart
, const void *pEnd
)
1145 : wxStringBase((const wxChar
*)pStart
, (const wxChar
*)pEnd
) { }
1147 wxString(const_iterator first
, const_iterator last
)
1148 : wxStringBase(first
, last
) { }
1151 // lib.string.modifiers
1152 // append elements str[pos], ..., str[pos+n]
1153 wxString
& append(const wxString
& str
, size_t pos
, size_t n
)
1154 { return (wxString
&)wxStringBase::append(str
, pos
, n
); }
1156 wxString
& append(const wxString
& str
)
1157 { return (wxString
&)wxStringBase::append(str
); }
1158 // append first n (or all if n == npos) characters of sz
1159 wxString
& append(const wxChar
*sz
)
1160 { return (wxString
&)wxStringBase::append(sz
); }
1161 wxString
& append(const wxChar
*sz
, size_t n
)
1162 { return (wxString
&)wxStringBase::append(sz
, n
); }
1163 // append n copies of ch
1164 wxString
& append(size_t n
, wxChar ch
)
1165 { return (wxString
&)wxStringBase::append(n
, ch
); }
1166 // append from first to last
1167 wxString
& append(const_iterator first
, const_iterator last
)
1168 { return (wxString
&)wxStringBase::append(first
, last
); }
1170 // same as `this_string = str'
1171 wxString
& assign(const wxString
& str
)
1172 { return (wxString
&)wxStringBase::assign(str
); }
1173 // same as ` = str[pos..pos + n]
1174 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
)
1175 { return (wxString
&)wxStringBase::assign(str
, pos
, n
); }
1176 // same as `= first n (or all if n == npos) characters of sz'
1177 wxString
& assign(const wxChar
*sz
)
1178 { return (wxString
&)wxStringBase::assign(sz
); }
1179 wxString
& assign(const wxChar
*sz
, size_t n
)
1180 { return (wxString
&)wxStringBase::assign(sz
, n
); }
1181 // same as `= n copies of ch'
1182 wxString
& assign(size_t n
, wxChar ch
)
1183 { return (wxString
&)wxStringBase::assign(n
, ch
); }
1184 // assign from first to last
1185 wxString
& assign(const_iterator first
, const_iterator last
)
1186 { return (wxString
&)wxStringBase::assign(first
, last
); }
1188 // string comparison
1189 #if !defined(HAVE_STD_STRING_COMPARE)
1190 int compare(const wxStringBase
& str
) const;
1191 // comparison with a substring
1192 int compare(size_t nStart
, size_t nLen
, const wxStringBase
& str
) const;
1193 // comparison of 2 substrings
1194 int compare(size_t nStart
, size_t nLen
,
1195 const wxStringBase
& str
, size_t nStart2
, size_t nLen2
) const;
1196 // just like strcmp()
1197 int compare(const wxChar
* sz
) const;
1198 // substring comparison with first nCount characters of sz
1199 int compare(size_t nStart
, size_t nLen
,
1200 const wxChar
* sz
, size_t nCount
= npos
) const;
1201 #endif // !defined HAVE_STD_STRING_COMPARE
1203 // insert another string
1204 wxString
& insert(size_t nPos
, const wxString
& str
)
1205 { return (wxString
&)wxStringBase::insert(nPos
, str
); }
1206 // insert n chars of str starting at nStart (in str)
1207 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
)
1208 { return (wxString
&)wxStringBase::insert(nPos
, str
, nStart
, n
); }
1209 // insert first n (or all if n == npos) characters of sz
1210 wxString
& insert(size_t nPos
, const wxChar
*sz
)
1211 { return (wxString
&)wxStringBase::insert(nPos
, sz
); }
1212 wxString
& insert(size_t nPos
, const wxChar
*sz
, size_t n
)
1213 { return (wxString
&)wxStringBase::insert(nPos
, sz
, n
); }
1214 // insert n copies of ch
1215 wxString
& insert(size_t nPos
, size_t n
, wxChar ch
)
1216 { return (wxString
&)wxStringBase::insert(nPos
, n
, ch
); }
1217 iterator
insert(iterator it
, wxChar ch
)
1218 { return wxStringBase::insert(it
, ch
); }
1219 void insert(iterator it
, const_iterator first
, const_iterator last
)
1220 { wxStringBase::insert(it
, first
, last
); }
1221 void insert(iterator it
, size_type n
, wxChar ch
)
1222 { wxStringBase::insert(it
, n
, ch
); }
1224 // delete characters from nStart to nStart + nLen
1225 wxString
& erase(size_type pos
= 0, size_type n
= npos
)
1226 { return (wxString
&)wxStringBase::erase(pos
, n
); }
1227 iterator
erase(iterator first
, iterator last
)
1228 { return wxStringBase::erase(first
, last
); }
1229 iterator
erase(iterator first
)
1230 { return wxStringBase::erase(first
); }
1232 #ifdef wxSTRING_BASE_HASNT_CLEAR
1233 void clear() { erase(); }
1236 // replaces the substring of length nLen starting at nStart
1237 wxString
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
)
1238 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, sz
); }
1239 // replaces the substring of length nLen starting at nStart
1240 wxString
& replace(size_t nStart
, size_t nLen
, const wxString
& str
)
1241 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, str
); }
1242 // replaces the substring with nCount copies of ch
1243 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
)
1244 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, nCount
, ch
); }
1245 // replaces a substring with another substring
1246 wxString
& replace(size_t nStart
, size_t nLen
,
1247 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1248 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, str
,
1250 // replaces the substring with first nCount chars of sz
1251 wxString
& replace(size_t nStart
, size_t nLen
,
1252 const wxChar
* sz
, size_t nCount
)
1253 { return (wxString
&)wxStringBase::replace(nStart
, nLen
, sz
, nCount
); }
1254 wxString
& replace(iterator first
, iterator last
, const_pointer s
)
1255 { return (wxString
&)wxStringBase::replace(first
, last
, s
); }
1256 wxString
& replace(iterator first
, iterator last
, const_pointer s
,
1258 { return (wxString
&)wxStringBase::replace(first
, last
, s
, n
); }
1259 wxString
& replace(iterator first
, iterator last
, const wxString
& s
)
1260 { return (wxString
&)wxStringBase::replace(first
, last
, s
); }
1261 wxString
& replace(iterator first
, iterator last
, size_type n
, wxChar c
)
1262 { return (wxString
&)wxStringBase::replace(first
, last
, n
, c
); }
1263 wxString
& replace(iterator first
, iterator last
,
1264 const_iterator first1
, const_iterator last1
)
1265 { return (wxString
&)wxStringBase::replace(first
, last
, first1
, last1
); }
1268 wxString
& operator+=(const wxString
& s
)
1269 { return (wxString
&)wxStringBase::operator+=(s
); }
1270 // string += C string
1271 wxString
& operator+=(const wxChar
*psz
)
1272 { return (wxString
&)wxStringBase::operator+=(psz
); }
1274 wxString
& operator+=(wxChar ch
)
1275 { return (wxString
&)wxStringBase::operator+=(ch
); }
1278 // IBM xlC compiler needs these operators to be declared in global scope,
1279 // although this shouldn't be a problem for the other compilers we prefer to
1280 // only do it for it in stable 2.6 branch
1282 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string1
, const wxString
& string2
);
1283 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, wxChar ch
);
1284 wxString WXDLLIMPEXP_BASE
operator+(wxChar ch
, const wxString
& string
);
1285 wxString WXDLLIMPEXP_BASE
operator+(const wxString
& string
, const wxChar
*psz
);
1286 wxString WXDLLIMPEXP_BASE
operator+(const wxChar
*psz
, const wxString
& string
);
1287 #endif // __IBMCPP__
1289 // define wxArrayString, for compatibility
1290 #if WXWIN_COMPATIBILITY_2_4 && !wxUSE_STL
1291 #include "wx/arrstr.h"
1295 // return an empty wxString (not very useful with wxUSE_STL == 1)
1296 inline const wxString
wxGetEmptyString() { return wxString(); }
1298 // return an empty wxString (more efficient than wxString() here)
1299 inline const wxString
& wxGetEmptyString()
1301 return *(wxString
*)&wxEmptyString
;
1303 #endif // wxUSE_STL/!wxUSE_STL
1305 // ----------------------------------------------------------------------------
1306 // wxStringBuffer: a tiny class allowing to get a writable pointer into string
1307 // ----------------------------------------------------------------------------
1311 class WXDLLIMPEXP_BASE wxStringBuffer
1314 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
1315 : m_str(str
), m_buf(lenWanted
)
1318 ~wxStringBuffer() { m_str
.assign(m_buf
.data(), wxStrlen(m_buf
.data())); }
1320 operator wxChar
*() { return m_buf
.data(); }
1325 wxWCharBuffer m_buf
;
1330 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
1333 class WXDLLIMPEXP_BASE wxStringBufferLength
1336 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
1337 : m_str(str
), m_buf(lenWanted
), m_len(0), m_lenSet(false)
1340 ~wxStringBufferLength()
1343 m_str
.assign(m_buf
.data(), m_len
);
1346 operator wxChar
*() { return m_buf
.data(); }
1347 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
1352 wxWCharBuffer m_buf
;
1359 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
1362 #else // if !wxUSE_STL
1364 class WXDLLIMPEXP_BASE wxStringBuffer
1367 wxStringBuffer(wxString
& str
, size_t lenWanted
= 1024)
1368 : m_str(str
), m_buf(NULL
)
1369 { m_buf
= m_str
.GetWriteBuf(lenWanted
); }
1371 ~wxStringBuffer() { m_str
.UngetWriteBuf(); }
1373 operator wxChar
*() const { return m_buf
; }
1379 DECLARE_NO_COPY_CLASS(wxStringBuffer
)
1382 class WXDLLIMPEXP_BASE wxStringBufferLength
1385 wxStringBufferLength(wxString
& str
, size_t lenWanted
= 1024)
1386 : m_str(str
), m_buf(NULL
), m_len(0), m_lenSet(false)
1388 m_buf
= m_str
.GetWriteBuf(lenWanted
);
1389 wxASSERT(m_buf
!= NULL
);
1392 ~wxStringBufferLength()
1395 m_str
.UngetWriteBuf(m_len
);
1398 operator wxChar
*() const { return m_buf
; }
1399 void SetLength(size_t length
) { m_len
= length
; m_lenSet
= true; }
1407 DECLARE_NO_COPY_CLASS(wxStringBufferLength
)
1410 #endif // !wxUSE_STL
1412 // ---------------------------------------------------------------------------
1413 // wxString comparison functions: operator versions are always case sensitive
1414 // ---------------------------------------------------------------------------
1416 // note that when wxUSE_STL == 1 the comparison operators taking std::string
1417 // are used and defining them also for wxString would only result in
1418 // compilation ambiguities when comparing std::string and wxString
1421 inline bool operator==(const wxString
& s1
, const wxString
& s2
)
1422 { return (s1
.Len() == s2
.Len()) && (s1
.Cmp(s2
) == 0); }
1423 inline bool operator==(const wxString
& s1
, const wxChar
* s2
)
1424 { return s1
.Cmp(s2
) == 0; }
1425 inline bool operator==(const wxChar
* s1
, const wxString
& s2
)
1426 { return s2
.Cmp(s1
) == 0; }
1427 inline bool operator!=(const wxString
& s1
, const wxString
& s2
)
1428 { return (s1
.Len() != s2
.Len()) || (s1
.Cmp(s2
) != 0); }
1429 inline bool operator!=(const wxString
& s1
, const wxChar
* s2
)
1430 { return s1
.Cmp(s2
) != 0; }
1431 inline bool operator!=(const wxChar
* s1
, const wxString
& s2
)
1432 { return s2
.Cmp(s1
) != 0; }
1433 inline bool operator< (const wxString
& s1
, const wxString
& s2
)
1434 { return s1
.Cmp(s2
) < 0; }
1435 inline bool operator< (const wxString
& s1
, const wxChar
* s2
)
1436 { return s1
.Cmp(s2
) < 0; }
1437 inline bool operator< (const wxChar
* s1
, const wxString
& s2
)
1438 { return s2
.Cmp(s1
) > 0; }
1439 inline bool operator> (const wxString
& s1
, const wxString
& s2
)
1440 { return s1
.Cmp(s2
) > 0; }
1441 inline bool operator> (const wxString
& s1
, const wxChar
* s2
)
1442 { return s1
.Cmp(s2
) > 0; }
1443 inline bool operator> (const wxChar
* s1
, const wxString
& s2
)
1444 { return s2
.Cmp(s1
) < 0; }
1445 inline bool operator<=(const wxString
& s1
, const wxString
& s2
)
1446 { return s1
.Cmp(s2
) <= 0; }
1447 inline bool operator<=(const wxString
& s1
, const wxChar
* s2
)
1448 { return s1
.Cmp(s2
) <= 0; }
1449 inline bool operator<=(const wxChar
* s1
, const wxString
& s2
)
1450 { return s2
.Cmp(s1
) >= 0; }
1451 inline bool operator>=(const wxString
& s1
, const wxString
& s2
)
1452 { return s1
.Cmp(s2
) >= 0; }
1453 inline bool operator>=(const wxString
& s1
, const wxChar
* s2
)
1454 { return s1
.Cmp(s2
) >= 0; }
1455 inline bool operator>=(const wxChar
* s1
, const wxString
& s2
)
1456 { return s2
.Cmp(s1
) <= 0; }
1459 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
)
1460 { return (s1
.Cmp((const wchar_t *)s2
) == 0); }
1461 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
)
1462 { return (s2
.Cmp((const wchar_t *)s1
) == 0); }
1463 inline bool operator!=(const wxString
& s1
, const wxWCharBuffer
& s2
)
1464 { return (s1
.Cmp((const wchar_t *)s2
) != 0); }
1465 inline bool operator!=(const wxWCharBuffer
& s1
, const wxString
& s2
)
1466 { return (s2
.Cmp((const wchar_t *)s1
) != 0); }
1467 #else // !wxUSE_UNICODE
1468 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
)
1469 { return (s1
.Cmp((const char *)s2
) == 0); }
1470 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
)
1471 { return (s2
.Cmp((const char *)s1
) == 0); }
1472 inline bool operator!=(const wxString
& s1
, const wxCharBuffer
& s2
)
1473 { return (s1
.Cmp((const char *)s2
) != 0); }
1474 inline bool operator!=(const wxCharBuffer
& s1
, const wxString
& s2
)
1475 { return (s2
.Cmp((const char *)s1
) != 0); }
1476 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1479 inline wxString
operator+(const wxString
& string
, const wxWCharBuffer
& buf
)
1480 { return string
+ (const wchar_t *)buf
; }
1481 inline wxString
operator+(const wxWCharBuffer
& buf
, const wxString
& string
)
1482 { return (const wchar_t *)buf
+ string
; }
1483 #else // !wxUSE_UNICODE
1484 inline wxString
operator+(const wxString
& string
, const wxCharBuffer
& buf
)
1485 { return string
+ (const char *)buf
; }
1486 inline wxString
operator+(const wxCharBuffer
& buf
, const wxString
& string
)
1487 { return (const char *)buf
+ string
; }
1488 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1490 #endif // !wxUSE_STL
1492 // comparison with char (those are not defined by std::[w]string and so should
1493 // be always available)
1494 inline bool operator==(wxChar c
, const wxString
& s
) { return s
.IsSameAs(c
); }
1495 inline bool operator==(const wxString
& s
, wxChar c
) { return s
.IsSameAs(c
); }
1496 inline bool operator!=(wxChar c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
1497 inline bool operator!=(const wxString
& s
, wxChar c
) { return !s
.IsSameAs(c
); }
1499 // ---------------------------------------------------------------------------
1500 // Implementation only from here until the end of file
1501 // ---------------------------------------------------------------------------
1503 // don't pollute the library user's name space
1504 #undef wxASSERT_VALID_INDEX
1506 #if wxUSE_STD_IOSTREAM
1508 #include "wx/iosfwrap.h"
1510 WXDLLIMPEXP_BASE wxSTD istream
& operator>>(wxSTD istream
&, wxString
&);
1511 WXDLLIMPEXP_BASE wxSTD ostream
& operator<<(wxSTD ostream
&, const wxString
&);
1513 #endif // wxSTD_STRING_COMPATIBILITY
1515 #endif // _WX_WXSTRINGH__