2 **********************************************************************
3 * Copyright (C) 1998-2010, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
9 * Modification History:
11 * Date Name Description
12 * 09/25/98 stephen Creation.
13 * 11/11/98 stephen Changed per 11/9 code review.
14 * 04/20/99 stephen Overhauled per 4/16 code review.
15 * 11/18/99 aliu Made to inherit from Replaceable. Added method
16 * handleReplaceBetween(); other methods unchanged.
17 * 06/25/01 grhoten Remove dependency on iostream.
18 ******************************************************************************
26 * \brief C++ API: Unicode String
29 #include "unicode/utypes.h"
30 #include "unicode/rep.h"
31 #include "unicode/std_string.h"
32 #include "unicode/stringpiece.h"
33 #include "unicode/bytestream.h"
35 struct UConverter
; // unicode/ucnv.h
36 class StringThreadTest
;
38 #ifndef U_COMPARE_CODE_POINT_ORDER
39 /* see also ustring.h and unorm.h */
41 * Option bit for u_strCaseCompare, u_strcasecmp, unorm_compare, etc:
42 * Compare strings in code point order instead of code unit order.
45 #define U_COMPARE_CODE_POINT_ORDER 0x8000
50 * \ingroup ustring_ustrlen
52 U_STABLE
int32_t U_EXPORT2
53 u_strlen(const UChar
*s
);
58 class Locale
; // unicode/locid.h
59 class StringCharacterIterator
;
60 class BreakIterator
; // unicode/brkiter.h
62 /* The <iostream> include has been moved to unicode/ustream.h */
65 * Constant to be used in the UnicodeString(char *, int32_t, EInvariant) constructor
66 * which constructs a Unicode string from an invariant-character char * string.
67 * About invariant characters see utypes.h.
68 * This constructor has no runtime dependency on conversion code and is
69 * therefore recommended over ones taking a charset name string
70 * (where the empty string "" indicates invariant-character conversion).
74 #define US_INV U_NAMESPACE_QUALIFIER UnicodeString::kInvariant
77 * Unicode String literals in C++.
78 * Dependent on the platform properties, different UnicodeString
79 * constructors should be used to create a UnicodeString object from
81 * The macros are defined for maximum performance.
82 * They work only for strings that contain "invariant characters", i.e.,
83 * only latin letters, digits, and some punctuation.
84 * See utypes.h for details.
86 * The string parameter must be a C string literal.
87 * The length of the string, not including the terminating
88 * <code>NUL</code>, must be specified as a constant.
89 * The U_STRING_DECL macro should be invoked exactly once for one
90 * such string variable before it is used.
93 #if defined(U_DECLARE_UTF16)
94 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)U_DECLARE_UTF16(cs), _length)
95 #elif U_SIZEOF_WCHAR_T==U_SIZEOF_UCHAR && (U_CHARSET_FAMILY==U_ASCII_FAMILY || (U_SIZEOF_UCHAR == 2 && defined(U_WCHAR_IS_UTF16)))
96 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)L ## cs, _length)
97 #elif U_SIZEOF_UCHAR==1 && U_CHARSET_FAMILY==U_ASCII_FAMILY
98 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)cs, _length)
100 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(cs, _length, US_INV)
104 * Unicode String literals in C++.
105 * Dependent on the platform properties, different UnicodeString
106 * constructors should be used to create a UnicodeString object from
108 * The macros are defined for improved performance.
109 * They work only for strings that contain "invariant characters", i.e.,
110 * only latin letters, digits, and some punctuation.
111 * See utypes.h for details.
113 * The string parameter must be a C string literal.
116 #define UNICODE_STRING_SIMPLE(cs) UNICODE_STRING(cs, -1)
119 * UnicodeString is a string class that stores Unicode characters directly and provides
120 * similar functionality as the Java String and StringBuffer classes.
121 * It is a concrete implementation of the abstract class Replaceable (for transliteration).
123 * The UnicodeString class is not suitable for subclassing.
125 * <p>For an overview of Unicode strings in C and C++ see the
126 * <a href="http://icu-project.org/userguide/strings.html">User Guide Strings chapter</a>.</p>
128 * <p>In ICU, a Unicode string consists of 16-bit Unicode <em>code units</em>.
129 * A Unicode character may be stored with either one code unit
130 * (the most common case) or with a matched pair of special code units
131 * ("surrogates"). The data type for code units is UChar.
132 * For single-character handling, a Unicode character code <em>point</em> is a value
133 * in the range 0..0x10ffff. ICU uses the UChar32 type for code points.</p>
135 * <p>Indexes and offsets into and lengths of strings always count code units, not code points.
136 * This is the same as with multi-byte char* strings in traditional string handling.
137 * Operations on partial strings typically do not test for code point boundaries.
138 * If necessary, the user needs to take care of such boundaries by testing for the code unit
139 * values or by using functions like
140 * UnicodeString::getChar32Start() and UnicodeString::getChar32Limit()
141 * (or, in C, the equivalent macros U16_SET_CP_START() and U16_SET_CP_LIMIT(), see utf.h).</p>
143 * UnicodeString methods are more lenient with regard to input parameter values
144 * than other ICU APIs. In particular:
145 * - If indexes are out of bounds for a UnicodeString object
146 * (<0 or >length()) then they are "pinned" to the nearest boundary.
147 * - If primitive string pointer values (e.g., const UChar * or char *)
148 * for input strings are NULL, then those input string parameters are treated
149 * as if they pointed to an empty string.
150 * However, this is <em>not</em> the case for char * parameters for charset names
152 * - Most UnicodeString methods do not take a UErrorCode parameter because
153 * there are usually very few opportunities for failure other than a shortage
154 * of memory, error codes in low-level C++ string methods would be inconvenient,
155 * and the error code as the last parameter (ICU convention) would prevent
156 * the use of default parameter values.
157 * Instead, such methods set the UnicodeString into a "bogus" state
158 * (see isBogus()) if an error occurs.
160 * In string comparisons, two UnicodeString objects that are both "bogus"
161 * compare equal (to be transitive and prevent endless loops in sorting),
162 * and a "bogus" string compares less than any non-"bogus" one.
164 * Const UnicodeString methods are thread-safe. Multiple threads can use
165 * const methods on the same UnicodeString object simultaneously,
166 * but non-const methods must not be called concurrently (in multiple threads)
167 * with any other (const or non-const) methods.
169 * Similarly, const UnicodeString & parameters are thread-safe.
170 * One object may be passed in as such a parameter concurrently in multiple threads.
171 * This includes the const UnicodeString & parameters for
172 * copy construction, assignment, and cloning.
174 * <p>UnicodeString uses several storage methods.
175 * String contents can be stored inside the UnicodeString object itself,
176 * in an allocated and shared buffer, or in an outside buffer that is "aliased".
177 * Most of this is done transparently, but careful aliasing in particular provides
178 * significant performance improvements.
179 * Also, the internal buffer is accessible via special functions.
180 * For details see the
181 * <a href="http://icu-project.org/userguide/strings.html">User Guide Strings chapter</a>.</p>
184 * @see CharacterIterator
187 class U_COMMON_API UnicodeString
: public Replaceable
192 * Constant to be used in the UnicodeString(char *, int32_t, EInvariant) constructor
193 * which constructs a Unicode string from an invariant-character char * string.
194 * Use the macro US_INV instead of the full qualification for this value.
207 //========================================
208 // Read-only operations
209 //========================================
211 /* Comparison - bitwise only - for international comparison use collation */
214 * Equality operator. Performs only bitwise comparison.
215 * @param text The UnicodeString to compare to this one.
216 * @return TRUE if <TT>text</TT> contains the same characters as this one,
220 inline UBool
operator== (const UnicodeString
& text
) const;
223 * Inequality operator. Performs only bitwise comparison.
224 * @param text The UnicodeString to compare to this one.
225 * @return FALSE if <TT>text</TT> contains the same characters as this one,
229 inline UBool
operator!= (const UnicodeString
& text
) const;
232 * Greater than operator. Performs only bitwise comparison.
233 * @param text The UnicodeString to compare to this one.
234 * @return TRUE if the characters in this are bitwise
235 * greater than the characters in <code>text</code>, FALSE otherwise
238 inline UBool
operator> (const UnicodeString
& text
) const;
241 * Less than operator. Performs only bitwise comparison.
242 * @param text The UnicodeString to compare to this one.
243 * @return TRUE if the characters in this are bitwise
244 * less than the characters in <code>text</code>, FALSE otherwise
247 inline UBool
operator< (const UnicodeString
& text
) const;
250 * Greater than or equal operator. Performs only bitwise comparison.
251 * @param text The UnicodeString to compare to this one.
252 * @return TRUE if the characters in this are bitwise
253 * greater than or equal to the characters in <code>text</code>, FALSE otherwise
256 inline UBool
operator>= (const UnicodeString
& text
) const;
259 * Less than or equal operator. Performs only bitwise comparison.
260 * @param text The UnicodeString to compare to this one.
261 * @return TRUE if the characters in this are bitwise
262 * less than or equal to the characters in <code>text</code>, FALSE otherwise
265 inline UBool
operator<= (const UnicodeString
& text
) const;
268 * Compare the characters bitwise in this UnicodeString to
269 * the characters in <code>text</code>.
270 * @param text The UnicodeString to compare to this one.
271 * @return The result of bitwise character comparison: 0 if this
272 * contains the same characters as <code>text</code>, -1 if the characters in
273 * this are bitwise less than the characters in <code>text</code>, +1 if the
274 * characters in this are bitwise greater than the characters
275 * in <code>text</code>.
278 inline int8_t compare(const UnicodeString
& text
) const;
281 * Compare the characters bitwise in the range
282 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
284 * @param start the offset at which the compare operation begins
285 * @param length the number of characters of text to compare.
286 * @param text the other text to be compared against this string.
287 * @return The result of bitwise character comparison: 0 if this
288 * contains the same characters as <code>text</code>, -1 if the characters in
289 * this are bitwise less than the characters in <code>text</code>, +1 if the
290 * characters in this are bitwise greater than the characters
291 * in <code>text</code>.
294 inline int8_t compare(int32_t start
,
296 const UnicodeString
& text
) const;
299 * Compare the characters bitwise in the range
300 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
301 * in <TT>srcText</TT> in the range
302 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
303 * @param start the offset at which the compare operation begins
304 * @param length the number of characters in this to compare.
305 * @param srcText the text to be compared
306 * @param srcStart the offset into <TT>srcText</TT> to start comparison
307 * @param srcLength the number of characters in <TT>src</TT> to compare
308 * @return The result of bitwise character comparison: 0 if this
309 * contains the same characters as <code>srcText</code>, -1 if the characters in
310 * this are bitwise less than the characters in <code>srcText</code>, +1 if the
311 * characters in this are bitwise greater than the characters
312 * in <code>srcText</code>.
315 inline int8_t compare(int32_t start
,
317 const UnicodeString
& srcText
,
319 int32_t srcLength
) const;
322 * Compare the characters bitwise in this UnicodeString with the first
323 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
324 * @param srcChars The characters to compare to this UnicodeString.
325 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
326 * @return The result of bitwise character comparison: 0 if this
327 * contains the same characters as <code>srcChars</code>, -1 if the characters in
328 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
329 * characters in this are bitwise greater than the characters
330 * in <code>srcChars</code>.
333 inline int8_t compare(const UChar
*srcChars
,
334 int32_t srcLength
) const;
337 * Compare the characters bitwise in the range
338 * [<TT>start</TT>, <TT>start + length</TT>) with the first
339 * <TT>length</TT> characters in <TT>srcChars</TT>
340 * @param start the offset at which the compare operation begins
341 * @param length the number of characters to compare.
342 * @param srcChars the characters to be compared
343 * @return The result of bitwise character comparison: 0 if this
344 * contains the same characters as <code>srcChars</code>, -1 if the characters in
345 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
346 * characters in this are bitwise greater than the characters
347 * in <code>srcChars</code>.
350 inline int8_t compare(int32_t start
,
352 const UChar
*srcChars
) const;
355 * Compare the characters bitwise in the range
356 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
357 * in <TT>srcChars</TT> in the range
358 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
359 * @param start the offset at which the compare operation begins
360 * @param length the number of characters in this to compare
361 * @param srcChars the characters to be compared
362 * @param srcStart the offset into <TT>srcChars</TT> to start comparison
363 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
364 * @return The result of bitwise character comparison: 0 if this
365 * contains the same characters as <code>srcChars</code>, -1 if the characters in
366 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
367 * characters in this are bitwise greater than the characters
368 * in <code>srcChars</code>.
371 inline int8_t compare(int32_t start
,
373 const UChar
*srcChars
,
375 int32_t srcLength
) const;
378 * Compare the characters bitwise in the range
379 * [<TT>start</TT>, <TT>limit</TT>) with the characters
380 * in <TT>srcText</TT> in the range
381 * [<TT>srcStart</TT>, <TT>srcLimit</TT>).
382 * @param start the offset at which the compare operation begins
383 * @param limit the offset immediately following the compare operation
384 * @param srcText the text to be compared
385 * @param srcStart the offset into <TT>srcText</TT> to start comparison
386 * @param srcLimit the offset into <TT>srcText</TT> to limit comparison
387 * @return The result of bitwise character comparison: 0 if this
388 * contains the same characters as <code>srcText</code>, -1 if the characters in
389 * this are bitwise less than the characters in <code>srcText</code>, +1 if the
390 * characters in this are bitwise greater than the characters
391 * in <code>srcText</code>.
394 inline int8_t compareBetween(int32_t start
,
396 const UnicodeString
& srcText
,
398 int32_t srcLimit
) const;
401 * Compare two Unicode strings in code point order.
402 * The result may be different from the results of compare(), operator<, etc.
403 * if supplementary characters are present:
405 * In UTF-16, supplementary characters (with code points U+10000 and above) are
406 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
407 * which means that they compare as less than some other BMP characters like U+feff.
408 * This function compares Unicode strings in code point order.
409 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
411 * @param text Another string to compare this one to.
412 * @return a negative/zero/positive integer corresponding to whether
413 * this string is less than/equal to/greater than the second one
414 * in code point order
417 inline int8_t compareCodePointOrder(const UnicodeString
& text
) const;
420 * Compare two Unicode strings in code point order.
421 * The result may be different from the results of compare(), operator<, etc.
422 * if supplementary characters are present:
424 * In UTF-16, supplementary characters (with code points U+10000 and above) are
425 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
426 * which means that they compare as less than some other BMP characters like U+feff.
427 * This function compares Unicode strings in code point order.
428 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
430 * @param start The start offset in this string at which the compare operation begins.
431 * @param length The number of code units from this string to compare.
432 * @param srcText Another string to compare this one to.
433 * @return a negative/zero/positive integer corresponding to whether
434 * this string is less than/equal to/greater than the second one
435 * in code point order
438 inline int8_t compareCodePointOrder(int32_t start
,
440 const UnicodeString
& srcText
) const;
443 * Compare two Unicode strings in code point order.
444 * The result may be different from the results of compare(), operator<, etc.
445 * if supplementary characters are present:
447 * In UTF-16, supplementary characters (with code points U+10000 and above) are
448 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
449 * which means that they compare as less than some other BMP characters like U+feff.
450 * This function compares Unicode strings in code point order.
451 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
453 * @param start The start offset in this string at which the compare operation begins.
454 * @param length The number of code units from this string to compare.
455 * @param srcText Another string to compare this one to.
456 * @param srcStart The start offset in that string at which the compare operation begins.
457 * @param srcLength The number of code units from that string to compare.
458 * @return a negative/zero/positive integer corresponding to whether
459 * this string is less than/equal to/greater than the second one
460 * in code point order
463 inline int8_t compareCodePointOrder(int32_t start
,
465 const UnicodeString
& srcText
,
467 int32_t srcLength
) const;
470 * Compare two Unicode strings in code point order.
471 * The result may be different from the results of compare(), operator<, etc.
472 * if supplementary characters are present:
474 * In UTF-16, supplementary characters (with code points U+10000 and above) are
475 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
476 * which means that they compare as less than some other BMP characters like U+feff.
477 * This function compares Unicode strings in code point order.
478 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
480 * @param srcChars A pointer to another string to compare this one to.
481 * @param srcLength The number of code units from that string to compare.
482 * @return a negative/zero/positive integer corresponding to whether
483 * this string is less than/equal to/greater than the second one
484 * in code point order
487 inline int8_t compareCodePointOrder(const UChar
*srcChars
,
488 int32_t srcLength
) const;
491 * Compare two Unicode strings in code point order.
492 * The result may be different from the results of compare(), operator<, etc.
493 * if supplementary characters are present:
495 * In UTF-16, supplementary characters (with code points U+10000 and above) are
496 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
497 * which means that they compare as less than some other BMP characters like U+feff.
498 * This function compares Unicode strings in code point order.
499 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
501 * @param start The start offset in this string at which the compare operation begins.
502 * @param length The number of code units from this string to compare.
503 * @param srcChars A pointer to another string to compare this one to.
504 * @return a negative/zero/positive integer corresponding to whether
505 * this string is less than/equal to/greater than the second one
506 * in code point order
509 inline int8_t compareCodePointOrder(int32_t start
,
511 const UChar
*srcChars
) const;
514 * Compare two Unicode strings in code point order.
515 * The result may be different from the results of compare(), operator<, etc.
516 * if supplementary characters are present:
518 * In UTF-16, supplementary characters (with code points U+10000 and above) are
519 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
520 * which means that they compare as less than some other BMP characters like U+feff.
521 * This function compares Unicode strings in code point order.
522 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
524 * @param start The start offset in this string at which the compare operation begins.
525 * @param length The number of code units from this string to compare.
526 * @param srcChars A pointer to another string to compare this one to.
527 * @param srcStart The start offset in that string at which the compare operation begins.
528 * @param srcLength The number of code units from that string to compare.
529 * @return a negative/zero/positive integer corresponding to whether
530 * this string is less than/equal to/greater than the second one
531 * in code point order
534 inline int8_t compareCodePointOrder(int32_t start
,
536 const UChar
*srcChars
,
538 int32_t srcLength
) const;
541 * Compare two Unicode strings in code point order.
542 * The result may be different from the results of compare(), operator<, etc.
543 * if supplementary characters are present:
545 * In UTF-16, supplementary characters (with code points U+10000 and above) are
546 * stored with pairs of surrogate code units. These have values from 0xd800 to 0xdfff,
547 * which means that they compare as less than some other BMP characters like U+feff.
548 * This function compares Unicode strings in code point order.
549 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
551 * @param start The start offset in this string at which the compare operation begins.
552 * @param limit The offset after the last code unit from this string to compare.
553 * @param srcText Another string to compare this one to.
554 * @param srcStart The start offset in that string at which the compare operation begins.
555 * @param srcLimit The offset after the last code unit from that string to compare.
556 * @return a negative/zero/positive integer corresponding to whether
557 * this string is less than/equal to/greater than the second one
558 * in code point order
561 inline int8_t compareCodePointOrderBetween(int32_t start
,
563 const UnicodeString
& srcText
,
565 int32_t srcLimit
) const;
568 * Compare two strings case-insensitively using full case folding.
569 * This is equivalent to this->foldCase(options).compare(text.foldCase(options)).
571 * @param text Another string to compare this one to.
572 * @param options A bit set of options:
573 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
574 * Comparison in code unit order with default case folding.
576 * - U_COMPARE_CODE_POINT_ORDER
577 * Set to choose code point order instead of code unit order
578 * (see u_strCompare for details).
580 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
582 * @return A negative, zero, or positive integer indicating the comparison result.
585 inline int8_t caseCompare(const UnicodeString
& text
, uint32_t options
) const;
588 * Compare two strings case-insensitively using full case folding.
589 * This is equivalent to this->foldCase(options).compare(srcText.foldCase(options)).
591 * @param start The start offset in this string at which the compare operation begins.
592 * @param length The number of code units from this string to compare.
593 * @param srcText Another string to compare this one to.
594 * @param options A bit set of options:
595 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
596 * Comparison in code unit order with default case folding.
598 * - U_COMPARE_CODE_POINT_ORDER
599 * Set to choose code point order instead of code unit order
600 * (see u_strCompare for details).
602 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
604 * @return A negative, zero, or positive integer indicating the comparison result.
607 inline int8_t caseCompare(int32_t start
,
609 const UnicodeString
& srcText
,
610 uint32_t options
) const;
613 * Compare two strings case-insensitively using full case folding.
614 * This is equivalent to this->foldCase(options).compare(srcText.foldCase(options)).
616 * @param start The start offset in this string at which the compare operation begins.
617 * @param length The number of code units from this string to compare.
618 * @param srcText Another string to compare this one to.
619 * @param srcStart The start offset in that string at which the compare operation begins.
620 * @param srcLength The number of code units from that string to compare.
621 * @param options A bit set of options:
622 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
623 * Comparison in code unit order with default case folding.
625 * - U_COMPARE_CODE_POINT_ORDER
626 * Set to choose code point order instead of code unit order
627 * (see u_strCompare for details).
629 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
631 * @return A negative, zero, or positive integer indicating the comparison result.
634 inline int8_t caseCompare(int32_t start
,
636 const UnicodeString
& srcText
,
639 uint32_t options
) const;
642 * Compare two strings case-insensitively using full case folding.
643 * This is equivalent to this->foldCase(options).compare(srcChars.foldCase(options)).
645 * @param srcChars A pointer to another string to compare this one to.
646 * @param srcLength The number of code units from that string to compare.
647 * @param options A bit set of options:
648 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
649 * Comparison in code unit order with default case folding.
651 * - U_COMPARE_CODE_POINT_ORDER
652 * Set to choose code point order instead of code unit order
653 * (see u_strCompare for details).
655 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
657 * @return A negative, zero, or positive integer indicating the comparison result.
660 inline int8_t caseCompare(const UChar
*srcChars
,
662 uint32_t options
) const;
665 * Compare two strings case-insensitively using full case folding.
666 * This is equivalent to this->foldCase(options).compare(srcChars.foldCase(options)).
668 * @param start The start offset in this string at which the compare operation begins.
669 * @param length The number of code units from this string to compare.
670 * @param srcChars A pointer to another string to compare this one to.
671 * @param options A bit set of options:
672 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
673 * Comparison in code unit order with default case folding.
675 * - U_COMPARE_CODE_POINT_ORDER
676 * Set to choose code point order instead of code unit order
677 * (see u_strCompare for details).
679 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
681 * @return A negative, zero, or positive integer indicating the comparison result.
684 inline int8_t caseCompare(int32_t start
,
686 const UChar
*srcChars
,
687 uint32_t options
) const;
690 * Compare two strings case-insensitively using full case folding.
691 * This is equivalent to this->foldCase(options).compare(srcChars.foldCase(options)).
693 * @param start The start offset in this string at which the compare operation begins.
694 * @param length The number of code units from this string to compare.
695 * @param srcChars A pointer to another string to compare this one to.
696 * @param srcStart The start offset in that string at which the compare operation begins.
697 * @param srcLength The number of code units from that string to compare.
698 * @param options A bit set of options:
699 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
700 * Comparison in code unit order with default case folding.
702 * - U_COMPARE_CODE_POINT_ORDER
703 * Set to choose code point order instead of code unit order
704 * (see u_strCompare for details).
706 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
708 * @return A negative, zero, or positive integer indicating the comparison result.
711 inline int8_t caseCompare(int32_t start
,
713 const UChar
*srcChars
,
716 uint32_t options
) const;
719 * Compare two strings case-insensitively using full case folding.
720 * This is equivalent to this->foldCase(options).compareBetween(text.foldCase(options)).
722 * @param start The start offset in this string at which the compare operation begins.
723 * @param limit The offset after the last code unit from this string to compare.
724 * @param srcText Another string to compare this one to.
725 * @param srcStart The start offset in that string at which the compare operation begins.
726 * @param srcLimit The offset after the last code unit from that string to compare.
727 * @param options A bit set of options:
728 * - U_FOLD_CASE_DEFAULT or 0 is used for default options:
729 * Comparison in code unit order with default case folding.
731 * - U_COMPARE_CODE_POINT_ORDER
732 * Set to choose code point order instead of code unit order
733 * (see u_strCompare for details).
735 * - U_FOLD_CASE_EXCLUDE_SPECIAL_I
737 * @return A negative, zero, or positive integer indicating the comparison result.
740 inline int8_t caseCompareBetween(int32_t start
,
742 const UnicodeString
& srcText
,
745 uint32_t options
) const;
748 * Determine if this starts with the characters in <TT>text</TT>
749 * @param text The text to match.
750 * @return TRUE if this starts with the characters in <TT>text</TT>,
754 inline UBool
startsWith(const UnicodeString
& text
) const;
757 * Determine if this starts with the characters in <TT>srcText</TT>
758 * in the range [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
759 * @param srcText The text to match.
760 * @param srcStart the offset into <TT>srcText</TT> to start matching
761 * @param srcLength the number of characters in <TT>srcText</TT> to match
762 * @return TRUE if this starts with the characters in <TT>text</TT>,
766 inline UBool
startsWith(const UnicodeString
& srcText
,
768 int32_t srcLength
) const;
771 * Determine if this starts with the characters in <TT>srcChars</TT>
772 * @param srcChars The characters to match.
773 * @param srcLength the number of characters in <TT>srcChars</TT>
774 * @return TRUE if this starts with the characters in <TT>srcChars</TT>,
778 inline UBool
startsWith(const UChar
*srcChars
,
779 int32_t srcLength
) const;
782 * Determine if this ends with the characters in <TT>srcChars</TT>
783 * in the range [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
784 * @param srcChars The characters to match.
785 * @param srcStart the offset into <TT>srcText</TT> to start matching
786 * @param srcLength the number of characters in <TT>srcChars</TT> to match
787 * @return TRUE if this ends with the characters in <TT>srcChars</TT>, FALSE otherwise
790 inline UBool
startsWith(const UChar
*srcChars
,
792 int32_t srcLength
) const;
795 * Determine if this ends with the characters in <TT>text</TT>
796 * @param text The text to match.
797 * @return TRUE if this ends with the characters in <TT>text</TT>,
801 inline UBool
endsWith(const UnicodeString
& text
) const;
804 * Determine if this ends with the characters in <TT>srcText</TT>
805 * in the range [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
806 * @param srcText The text to match.
807 * @param srcStart the offset into <TT>srcText</TT> to start matching
808 * @param srcLength the number of characters in <TT>srcText</TT> to match
809 * @return TRUE if this ends with the characters in <TT>text</TT>,
813 inline UBool
endsWith(const UnicodeString
& srcText
,
815 int32_t srcLength
) const;
818 * Determine if this ends with the characters in <TT>srcChars</TT>
819 * @param srcChars The characters to match.
820 * @param srcLength the number of characters in <TT>srcChars</TT>
821 * @return TRUE if this ends with the characters in <TT>srcChars</TT>,
825 inline UBool
endsWith(const UChar
*srcChars
,
826 int32_t srcLength
) const;
829 * Determine if this ends with the characters in <TT>srcChars</TT>
830 * in the range [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
831 * @param srcChars The characters to match.
832 * @param srcStart the offset into <TT>srcText</TT> to start matching
833 * @param srcLength the number of characters in <TT>srcChars</TT> to match
834 * @return TRUE if this ends with the characters in <TT>srcChars</TT>,
838 inline UBool
endsWith(const UChar
*srcChars
,
840 int32_t srcLength
) const;
843 /* Searching - bitwise only */
846 * Locate in this the first occurrence of the characters in <TT>text</TT>,
847 * using bitwise comparison.
848 * @param text The text to search for.
849 * @return The offset into this of the start of <TT>text</TT>,
850 * or -1 if not found.
853 inline int32_t indexOf(const UnicodeString
& text
) const;
856 * Locate in this the first occurrence of the characters in <TT>text</TT>
857 * starting at offset <TT>start</TT>, using bitwise comparison.
858 * @param text The text to search for.
859 * @param start The offset at which searching will start.
860 * @return The offset into this of the start of <TT>text</TT>,
861 * or -1 if not found.
864 inline int32_t indexOf(const UnicodeString
& text
,
865 int32_t start
) const;
868 * Locate in this the first occurrence in the range
869 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
870 * in <TT>text</TT>, using bitwise comparison.
871 * @param text The text to search for.
872 * @param start The offset at which searching will start.
873 * @param length The number of characters to search
874 * @return The offset into this of the start of <TT>text</TT>,
875 * or -1 if not found.
878 inline int32_t indexOf(const UnicodeString
& text
,
880 int32_t length
) const;
883 * Locate in this the first occurrence in the range
884 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
885 * in <TT>srcText</TT> in the range
886 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>),
887 * using bitwise comparison.
888 * @param srcText The text to search for.
889 * @param srcStart the offset into <TT>srcText</TT> at which
891 * @param srcLength the number of characters in <TT>srcText</TT> to match
892 * @param start the offset into this at which to start matching
893 * @param length the number of characters in this to search
894 * @return The offset into this of the start of <TT>text</TT>,
895 * or -1 if not found.
898 inline int32_t indexOf(const UnicodeString
& srcText
,
902 int32_t length
) const;
905 * Locate in this the first occurrence of the characters in
907 * starting at offset <TT>start</TT>, using bitwise comparison.
908 * @param srcChars The text to search for.
909 * @param srcLength the number of characters in <TT>srcChars</TT> to match
910 * @param start the offset into this at which to start matching
911 * @return The offset into this of the start of <TT>text</TT>,
912 * or -1 if not found.
915 inline int32_t indexOf(const UChar
*srcChars
,
917 int32_t start
) const;
920 * Locate in this the first occurrence in the range
921 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
922 * in <TT>srcChars</TT>, using bitwise comparison.
923 * @param srcChars The text to search for.
924 * @param srcLength the number of characters in <TT>srcChars</TT>
925 * @param start The offset at which searching will start.
926 * @param length The number of characters to search
927 * @return The offset into this of the start of <TT>srcChars</TT>,
928 * or -1 if not found.
931 inline int32_t indexOf(const UChar
*srcChars
,
934 int32_t length
) const;
937 * Locate in this the first occurrence in the range
938 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
939 * in <TT>srcChars</TT> in the range
940 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>),
941 * using bitwise comparison.
942 * @param srcChars The text to search for.
943 * @param srcStart the offset into <TT>srcChars</TT> at which
945 * @param srcLength the number of characters in <TT>srcChars</TT> to match
946 * @param start the offset into this at which to start matching
947 * @param length the number of characters in this to search
948 * @return The offset into this of the start of <TT>text</TT>,
949 * or -1 if not found.
952 int32_t indexOf(const UChar
*srcChars
,
956 int32_t length
) const;
959 * Locate in this the first occurrence of the BMP code point <code>c</code>,
960 * using bitwise comparison.
961 * @param c The code unit to search for.
962 * @return The offset into this of <TT>c</TT>, or -1 if not found.
965 inline int32_t indexOf(UChar c
) const;
968 * Locate in this the first occurrence of the code point <TT>c</TT>,
969 * using bitwise comparison.
971 * @param c The code point to search for.
972 * @return The offset into this of <TT>c</TT>, or -1 if not found.
975 inline int32_t indexOf(UChar32 c
) const;
978 * Locate in this the first occurrence of the BMP code point <code>c</code>,
979 * starting at offset <TT>start</TT>, using bitwise comparison.
980 * @param c The code unit to search for.
981 * @param start The offset at which searching will start.
982 * @return The offset into this of <TT>c</TT>, or -1 if not found.
985 inline int32_t indexOf(UChar c
,
986 int32_t start
) const;
989 * Locate in this the first occurrence of the code point <TT>c</TT>
990 * starting at offset <TT>start</TT>, using bitwise comparison.
992 * @param c The code point to search for.
993 * @param start The offset at which searching will start.
994 * @return The offset into this of <TT>c</TT>, or -1 if not found.
997 inline int32_t indexOf(UChar32 c
,
998 int32_t start
) const;
1001 * Locate in this the first occurrence of the BMP code point <code>c</code>
1002 * in the range [<TT>start</TT>, <TT>start + length</TT>),
1003 * using bitwise comparison.
1004 * @param c The code unit to search for.
1005 * @param start the offset into this at which to start matching
1006 * @param length the number of characters in this to search
1007 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1010 inline int32_t indexOf(UChar c
,
1012 int32_t length
) const;
1015 * Locate in this the first occurrence of the code point <TT>c</TT>
1016 * in the range [<TT>start</TT>, <TT>start + length</TT>),
1017 * using bitwise comparison.
1019 * @param c The code point to search for.
1020 * @param start the offset into this at which to start matching
1021 * @param length the number of characters in this to search
1022 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1025 inline int32_t indexOf(UChar32 c
,
1027 int32_t length
) const;
1030 * Locate in this the last occurrence of the characters in <TT>text</TT>,
1031 * using bitwise comparison.
1032 * @param text The text to search for.
1033 * @return The offset into this of the start of <TT>text</TT>,
1034 * or -1 if not found.
1037 inline int32_t lastIndexOf(const UnicodeString
& text
) const;
1040 * Locate in this the last occurrence of the characters in <TT>text</TT>
1041 * starting at offset <TT>start</TT>, using bitwise comparison.
1042 * @param text The text to search for.
1043 * @param start The offset at which searching will start.
1044 * @return The offset into this of the start of <TT>text</TT>,
1045 * or -1 if not found.
1048 inline int32_t lastIndexOf(const UnicodeString
& text
,
1049 int32_t start
) const;
1052 * Locate in this the last occurrence in the range
1053 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
1054 * in <TT>text</TT>, using bitwise comparison.
1055 * @param text The text to search for.
1056 * @param start The offset at which searching will start.
1057 * @param length The number of characters to search
1058 * @return The offset into this of the start of <TT>text</TT>,
1059 * or -1 if not found.
1062 inline int32_t lastIndexOf(const UnicodeString
& text
,
1064 int32_t length
) const;
1067 * Locate in this the last occurrence in the range
1068 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
1069 * in <TT>srcText</TT> in the range
1070 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>),
1071 * using bitwise comparison.
1072 * @param srcText The text to search for.
1073 * @param srcStart the offset into <TT>srcText</TT> at which
1075 * @param srcLength the number of characters in <TT>srcText</TT> to match
1076 * @param start the offset into this at which to start matching
1077 * @param length the number of characters in this to search
1078 * @return The offset into this of the start of <TT>text</TT>,
1079 * or -1 if not found.
1082 inline int32_t lastIndexOf(const UnicodeString
& srcText
,
1086 int32_t length
) const;
1089 * Locate in this the last occurrence of the characters in <TT>srcChars</TT>
1090 * starting at offset <TT>start</TT>, using bitwise comparison.
1091 * @param srcChars The text to search for.
1092 * @param srcLength the number of characters in <TT>srcChars</TT> to match
1093 * @param start the offset into this at which to start matching
1094 * @return The offset into this of the start of <TT>text</TT>,
1095 * or -1 if not found.
1098 inline int32_t lastIndexOf(const UChar
*srcChars
,
1100 int32_t start
) const;
1103 * Locate in this the last occurrence in the range
1104 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
1105 * in <TT>srcChars</TT>, using bitwise comparison.
1106 * @param srcChars The text to search for.
1107 * @param srcLength the number of characters in <TT>srcChars</TT>
1108 * @param start The offset at which searching will start.
1109 * @param length The number of characters to search
1110 * @return The offset into this of the start of <TT>srcChars</TT>,
1111 * or -1 if not found.
1114 inline int32_t lastIndexOf(const UChar
*srcChars
,
1117 int32_t length
) const;
1120 * Locate in this the last occurrence in the range
1121 * [<TT>start</TT>, <TT>start + length</TT>) of the characters
1122 * in <TT>srcChars</TT> in the range
1123 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>),
1124 * using bitwise comparison.
1125 * @param srcChars The text to search for.
1126 * @param srcStart the offset into <TT>srcChars</TT> at which
1128 * @param srcLength the number of characters in <TT>srcChars</TT> to match
1129 * @param start the offset into this at which to start matching
1130 * @param length the number of characters in this to search
1131 * @return The offset into this of the start of <TT>text</TT>,
1132 * or -1 if not found.
1135 int32_t lastIndexOf(const UChar
*srcChars
,
1139 int32_t length
) const;
1142 * Locate in this the last occurrence of the BMP code point <code>c</code>,
1143 * using bitwise comparison.
1144 * @param c The code unit to search for.
1145 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1148 inline int32_t lastIndexOf(UChar c
) const;
1151 * Locate in this the last occurrence of the code point <TT>c</TT>,
1152 * using bitwise comparison.
1154 * @param c The code point to search for.
1155 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1158 inline int32_t lastIndexOf(UChar32 c
) const;
1161 * Locate in this the last occurrence of the BMP code point <code>c</code>
1162 * starting at offset <TT>start</TT>, using bitwise comparison.
1163 * @param c The code unit to search for.
1164 * @param start The offset at which searching will start.
1165 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1168 inline int32_t lastIndexOf(UChar c
,
1169 int32_t start
) const;
1172 * Locate in this the last occurrence of the code point <TT>c</TT>
1173 * starting at offset <TT>start</TT>, using bitwise comparison.
1175 * @param c The code point to search for.
1176 * @param start The offset at which searching will start.
1177 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1180 inline int32_t lastIndexOf(UChar32 c
,
1181 int32_t start
) const;
1184 * Locate in this the last occurrence of the BMP code point <code>c</code>
1185 * in the range [<TT>start</TT>, <TT>start + length</TT>),
1186 * using bitwise comparison.
1187 * @param c The code unit to search for.
1188 * @param start the offset into this at which to start matching
1189 * @param length the number of characters in this to search
1190 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1193 inline int32_t lastIndexOf(UChar c
,
1195 int32_t length
) const;
1198 * Locate in this the last occurrence of the code point <TT>c</TT>
1199 * in the range [<TT>start</TT>, <TT>start + length</TT>),
1200 * using bitwise comparison.
1202 * @param c The code point to search for.
1203 * @param start the offset into this at which to start matching
1204 * @param length the number of characters in this to search
1205 * @return The offset into this of <TT>c</TT>, or -1 if not found.
1208 inline int32_t lastIndexOf(UChar32 c
,
1210 int32_t length
) const;
1213 /* Character access */
1216 * Return the code unit at offset <tt>offset</tt>.
1217 * If the offset is not valid (0..length()-1) then U+ffff is returned.
1218 * @param offset a valid offset into the text
1219 * @return the code unit at offset <tt>offset</tt>
1220 * or 0xffff if the offset is not valid for this string
1223 inline UChar
charAt(int32_t offset
) const;
1226 * Return the code unit at offset <tt>offset</tt>.
1227 * If the offset is not valid (0..length()-1) then U+ffff is returned.
1228 * @param offset a valid offset into the text
1229 * @return the code unit at offset <tt>offset</tt>
1232 inline UChar
operator[] (int32_t offset
) const;
1235 * Return the code point that contains the code unit
1236 * at offset <tt>offset</tt>.
1237 * If the offset is not valid (0..length()-1) then U+ffff is returned.
1238 * @param offset a valid offset into the text
1239 * that indicates the text offset of any of the code units
1240 * that will be assembled into a code point (21-bit value) and returned
1241 * @return the code point of text at <tt>offset</tt>
1242 * or 0xffff if the offset is not valid for this string
1245 inline UChar32
char32At(int32_t offset
) const;
1248 * Adjust a random-access offset so that
1249 * it points to the beginning of a Unicode character.
1250 * The offset that is passed in points to
1251 * any code unit of a code point,
1252 * while the returned offset will point to the first code unit
1253 * of the same code point.
1254 * In UTF-16, if the input offset points to a second surrogate
1255 * of a surrogate pair, then the returned offset will point
1256 * to the first surrogate.
1257 * @param offset a valid offset into one code point of the text
1258 * @return offset of the first code unit of the same code point
1259 * @see U16_SET_CP_START
1262 inline int32_t getChar32Start(int32_t offset
) const;
1265 * Adjust a random-access offset so that
1266 * it points behind a Unicode character.
1267 * The offset that is passed in points behind
1268 * any code unit of a code point,
1269 * while the returned offset will point behind the last code unit
1270 * of the same code point.
1271 * In UTF-16, if the input offset points behind the first surrogate
1272 * (i.e., to the second surrogate)
1273 * of a surrogate pair, then the returned offset will point
1274 * behind the second surrogate (i.e., to the first surrogate).
1275 * @param offset a valid offset after any code unit of a code point of the text
1276 * @return offset of the first code unit after the same code point
1277 * @see U16_SET_CP_LIMIT
1280 inline int32_t getChar32Limit(int32_t offset
) const;
1283 * Move the code unit index along the string by delta code points.
1284 * Interpret the input index as a code unit-based offset into the string,
1285 * move the index forward or backward by delta code points, and
1286 * return the resulting index.
1287 * The input index should point to the first code unit of a code point,
1288 * if there is more than one.
1290 * Both input and output indexes are code unit-based as for all
1291 * string indexes/offsets in ICU (and other libraries, like MBCS char*).
1292 * If delta<0 then the index is moved backward (toward the start of the string).
1293 * If delta>0 then the index is moved forward (toward the end of the string).
1295 * This behaves like CharacterIterator::move32(delta, kCurrent).
1297 * Behavior for out-of-bounds indexes:
1298 * <code>moveIndex32</code> pins the input index to 0..length(), i.e.,
1299 * if the input index<0 then it is pinned to 0;
1300 * if it is index>length() then it is pinned to length().
1301 * Afterwards, the index is moved by <code>delta</code> code points
1302 * forward or backward,
1303 * but no further backward than to 0 and no further forward than to length().
1304 * The resulting index return value will be in between 0 and length(), inclusively.
1308 * // s has code points 'a' U+10000 'b' U+10ffff U+2029
1309 * UnicodeString s=UNICODE_STRING("a\\U00010000b\\U0010ffff\\u2029", 31).unescape();
1311 * // initial index: position of U+10000
1314 * // the following examples will all result in index==4, position of U+10ffff
1316 * // skip 2 code points from some position in the string
1317 * index=s.moveIndex32(index, 2); // skips U+10000 and 'b'
1319 * // go to the 3rd code point from the start of s (0-based)
1320 * index=s.moveIndex32(0, 3); // skips 'a', U+10000, and 'b'
1322 * // go to the next-to-last code point of s
1323 * index=s.moveIndex32(s.length(), -2); // backward-skips U+2029 and U+10ffff
1326 * @param index input code unit index
1327 * @param delta (signed) code point count to move the index forward or backward
1329 * @return the resulting code unit index
1332 int32_t moveIndex32(int32_t index
, int32_t delta
) const;
1334 /* Substring extraction */
1337 * Copy the characters in the range
1338 * [<tt>start</tt>, <tt>start + length</tt>) into the array <tt>dst</tt>,
1339 * beginning at <tt>dstStart</tt>.
1340 * If the string aliases to <code>dst</code> itself as an external buffer,
1341 * then extract() will not copy the contents.
1343 * @param start offset of first character which will be copied into the array
1344 * @param length the number of characters to extract
1345 * @param dst array in which to copy characters. The length of <tt>dst</tt>
1346 * must be at least (<tt>dstStart + length</tt>).
1347 * @param dstStart the offset in <TT>dst</TT> where the first character
1351 inline void extract(int32_t start
,
1354 int32_t dstStart
= 0) const;
1357 * Copy the contents of the string into dest.
1358 * This is a convenience function that
1359 * checks if there is enough space in dest,
1360 * extracts the entire string if possible,
1361 * and NUL-terminates dest if possible.
1363 * If the string fits into dest but cannot be NUL-terminated
1364 * (length()==destCapacity) then the error code is set to U_STRING_NOT_TERMINATED_WARNING.
1365 * If the string itself does not fit into dest
1366 * (length()>destCapacity) then the error code is set to U_BUFFER_OVERFLOW_ERROR.
1368 * If the string aliases to <code>dest</code> itself as an external buffer,
1369 * then extract() will not copy the contents.
1371 * @param dest Destination string buffer.
1372 * @param destCapacity Number of UChars available at dest.
1373 * @param errorCode ICU error code.
1378 extract(UChar
*dest
, int32_t destCapacity
,
1379 UErrorCode
&errorCode
) const;
1382 * Copy the characters in the range
1383 * [<tt>start</tt>, <tt>start + length</tt>) into the UnicodeString
1385 * @param start offset of first character which will be copied
1386 * @param length the number of characters to extract
1387 * @param target UnicodeString into which to copy characters.
1388 * @return A reference to <TT>target</TT>
1391 inline void extract(int32_t start
,
1393 UnicodeString
& target
) const;
1396 * Copy the characters in the range [<tt>start</tt>, <tt>limit</tt>)
1397 * into the array <tt>dst</tt>, beginning at <tt>dstStart</tt>.
1398 * @param start offset of first character which will be copied into the array
1399 * @param limit offset immediately following the last character to be copied
1400 * @param dst array in which to copy characters. The length of <tt>dst</tt>
1401 * must be at least (<tt>dstStart + (limit - start)</tt>).
1402 * @param dstStart the offset in <TT>dst</TT> where the first character
1406 inline void extractBetween(int32_t start
,
1409 int32_t dstStart
= 0) const;
1412 * Copy the characters in the range [<tt>start</tt>, <tt>limit</tt>)
1413 * into the UnicodeString <tt>target</tt>. Replaceable API.
1414 * @param start offset of first character which will be copied
1415 * @param limit offset immediately following the last character to be copied
1416 * @param target UnicodeString into which to copy characters.
1417 * @return A reference to <TT>target</TT>
1420 virtual void extractBetween(int32_t start
,
1422 UnicodeString
& target
) const;
1425 * Copy the characters in the range
1426 * [<tt>start</TT>, <tt>start + length</TT>) into an array of characters.
1427 * All characters must be invariant (see utypes.h).
1428 * Use US_INV as the last, signature-distinguishing parameter.
1430 * This function does not write any more than <code>targetLength</code>
1431 * characters but returns the length of the entire output string
1432 * so that one can allocate a larger buffer and call the function again
1434 * The output string is NUL-terminated if possible.
1436 * @param start offset of first character which will be copied
1437 * @param startLength the number of characters to extract
1438 * @param target the target buffer for extraction, can be NULL
1439 * if targetLength is 0
1440 * @param targetCapacity the length of the target buffer
1441 * @param inv Signature-distinguishing paramater, use US_INV.
1442 * @return the output string length, not including the terminating NUL
1445 int32_t extract(int32_t start
,
1446 int32_t startLength
,
1448 int32_t targetCapacity
,
1449 enum EInvariant inv
) const;
1451 #if U_CHARSET_IS_UTF8 || !UCONFIG_NO_CONVERSION
1454 * Copy the characters in the range
1455 * [<tt>start</TT>, <tt>start + length</TT>) into an array of characters
1456 * in the platform's default codepage.
1457 * This function does not write any more than <code>targetLength</code>
1458 * characters but returns the length of the entire output string
1459 * so that one can allocate a larger buffer and call the function again
1461 * The output string is NUL-terminated if possible.
1463 * @param start offset of first character which will be copied
1464 * @param startLength the number of characters to extract
1465 * @param target the target buffer for extraction
1466 * @param targetLength the length of the target buffer
1467 * If <TT>target</TT> is NULL, then the number of bytes required for
1468 * <TT>target</TT> is returned.
1469 * @return the output string length, not including the terminating NUL
1472 int32_t extract(int32_t start
,
1473 int32_t startLength
,
1475 uint32_t targetLength
) const;
1479 #if !UCONFIG_NO_CONVERSION
1482 * Copy the characters in the range
1483 * [<tt>start</TT>, <tt>start + length</TT>) into an array of characters
1484 * in a specified codepage.
1485 * The output string is NUL-terminated.
1487 * Recommendation: For invariant-character strings use
1488 * extract(int32_t start, int32_t length, char *target, int32_t targetCapacity, enum EInvariant inv) const
1489 * because it avoids object code dependencies of UnicodeString on
1490 * the conversion code.
1492 * @param start offset of first character which will be copied
1493 * @param startLength the number of characters to extract
1494 * @param target the target buffer for extraction
1495 * @param codepage the desired codepage for the characters. 0 has
1496 * the special meaning of the default codepage
1497 * If <code>codepage</code> is an empty string (<code>""</code>),
1498 * then a simple conversion is performed on the codepage-invariant
1499 * subset ("invariant characters") of the platform encoding. See utypes.h.
1500 * If <TT>target</TT> is NULL, then the number of bytes required for
1501 * <TT>target</TT> is returned. It is assumed that the target is big enough
1502 * to fit all of the characters.
1503 * @return the output string length, not including the terminating NUL
1506 inline int32_t extract(int32_t start
,
1507 int32_t startLength
,
1509 const char *codepage
= 0) const;
1512 * Copy the characters in the range
1513 * [<tt>start</TT>, <tt>start + length</TT>) into an array of characters
1514 * in a specified codepage.
1515 * This function does not write any more than <code>targetLength</code>
1516 * characters but returns the length of the entire output string
1517 * so that one can allocate a larger buffer and call the function again
1519 * The output string is NUL-terminated if possible.
1521 * Recommendation: For invariant-character strings use
1522 * extract(int32_t start, int32_t length, char *target, int32_t targetCapacity, enum EInvariant inv) const
1523 * because it avoids object code dependencies of UnicodeString on
1524 * the conversion code.
1526 * @param start offset of first character which will be copied
1527 * @param startLength the number of characters to extract
1528 * @param target the target buffer for extraction
1529 * @param targetLength the length of the target buffer
1530 * @param codepage the desired codepage for the characters. 0 has
1531 * the special meaning of the default codepage
1532 * If <code>codepage</code> is an empty string (<code>""</code>),
1533 * then a simple conversion is performed on the codepage-invariant
1534 * subset ("invariant characters") of the platform encoding. See utypes.h.
1535 * If <TT>target</TT> is NULL, then the number of bytes required for
1536 * <TT>target</TT> is returned.
1537 * @return the output string length, not including the terminating NUL
1540 int32_t extract(int32_t start
,
1541 int32_t startLength
,
1543 uint32_t targetLength
,
1544 const char *codepage
) const;
1547 * Convert the UnicodeString into a codepage string using an existing UConverter.
1548 * The output string is NUL-terminated if possible.
1550 * This function avoids the overhead of opening and closing a converter if
1551 * multiple strings are extracted.
1553 * @param dest destination string buffer, can be NULL if destCapacity==0
1554 * @param destCapacity the number of chars available at dest
1555 * @param cnv the converter object to be used (ucnv_resetFromUnicode() will be called),
1556 * or NULL for the default converter
1557 * @param errorCode normal ICU error code
1558 * @return the length of the output string, not counting the terminating NUL;
1559 * if the length is greater than destCapacity, then the string will not fit
1560 * and a buffer of the indicated length would need to be passed in
1563 int32_t extract(char *dest
, int32_t destCapacity
,
1565 UErrorCode
&errorCode
) const;
1570 * Create a temporary substring for the specified range.
1571 * Unlike the substring constructor and setTo() functions,
1572 * the object returned here will be a read-only alias (using getBuffer())
1573 * rather than copying the text.
1574 * As a result, this substring operation is much faster but requires
1575 * that the original string not be modified or deleted during the lifetime
1576 * of the returned substring object.
1577 * @param start offset of the first character visible in the substring
1578 * @param length length of the substring
1579 * @return a read-only alias UnicodeString object for the substring
1582 UnicodeString
tempSubString(int32_t start
=0, int32_t length
=INT32_MAX
) const;
1585 * Create a temporary substring for the specified range.
1586 * Same as tempSubString(start, length) except that the substring range
1587 * is specified as a (start, limit) pair (with an exclusive limit index)
1588 * rather than a (start, length) pair.
1589 * @param start offset of the first character visible in the substring
1590 * @param limit offset immediately following the last character visible in the substring
1591 * @return a read-only alias UnicodeString object for the substring
1594 inline UnicodeString
tempSubStringBetween(int32_t start
, int32_t limit
=INT32_MAX
) const;
1597 * Convert the UnicodeString to UTF-8 and write the result
1598 * to a ByteSink. This is called by toUTF8String().
1599 * Unpaired surrogates are replaced with U+FFFD.
1600 * Calls u_strToUTF8WithSub().
1602 * @param sink A ByteSink to which the UTF-8 version of the string is written.
1603 * sink.Flush() is called at the end.
1607 void toUTF8(ByteSink
&sink
) const;
1609 #if U_HAVE_STD_STRING
1612 * Convert the UnicodeString to UTF-8 and append the result
1613 * to a standard string.
1614 * Unpaired surrogates are replaced with U+FFFD.
1617 * @param result A standard string (or a compatible object)
1618 * to which the UTF-8 version of the string is appended.
1619 * @return The string object.
1623 template<typename StringClass
>
1624 StringClass
&toUTF8String(StringClass
&result
) const {
1625 StringByteSink
<StringClass
> sbs(&result
);
1633 * Convert the UnicodeString to UTF-32.
1634 * Unpaired surrogates are replaced with U+FFFD.
1635 * Calls u_strToUTF32WithSub().
1637 * @param utf32 destination string buffer, can be NULL if capacity==0
1638 * @param capacity the number of UChar32s available at utf32
1639 * @param errorCode Standard ICU error code. Its input value must
1640 * pass the U_SUCCESS() test, or else the function returns
1641 * immediately. Check for U_FAILURE() on output or use with
1642 * function chaining. (See User Guide for details.)
1643 * @return The length of the UTF-32 string.
1647 int32_t toUTF32(UChar32
*utf32
, int32_t capacity
, UErrorCode
&errorCode
) const;
1649 /* Length operations */
1652 * Return the length of the UnicodeString object.
1653 * The length is the number of UChar code units are in the UnicodeString.
1654 * If you want the number of code points, please use countChar32().
1655 * @return the length of the UnicodeString object
1659 inline int32_t length(void) const;
1662 * Count Unicode code points in the length UChar code units of the string.
1663 * A code point may occupy either one or two UChar code units.
1664 * Counting code points involves reading all code units.
1666 * This functions is basically the inverse of moveIndex32().
1668 * @param start the index of the first code unit to check
1669 * @param length the number of UChar code units to check
1670 * @return the number of code points in the specified code units
1675 countChar32(int32_t start
=0, int32_t length
=INT32_MAX
) const;
1678 * Check if the length UChar code units of the string
1679 * contain more Unicode code points than a certain number.
1680 * This is more efficient than counting all code points in this part of the string
1681 * and comparing that number with a threshold.
1682 * This function may not need to scan the string at all if the length
1683 * falls within a certain range, and
1684 * never needs to count more than 'number+1' code points.
1685 * Logically equivalent to (countChar32(start, length)>number).
1686 * A Unicode code point may occupy either one or two UChar code units.
1688 * @param start the index of the first code unit to check (0 for the entire string)
1689 * @param length the number of UChar code units to check
1690 * (use INT32_MAX for the entire string; remember that start/length
1691 * values are pinned)
1692 * @param number The number of code points in the (sub)string is compared against
1693 * the 'number' parameter.
1694 * @return Boolean value for whether the string contains more Unicode code points
1695 * than 'number'. Same as (u_countChar32(s, length)>number).
1697 * @see u_strHasMoreChar32Than
1701 hasMoreChar32Than(int32_t start
, int32_t length
, int32_t number
) const;
1704 * Determine if this string is empty.
1705 * @return TRUE if this string contains 0 characters, FALSE otherwise.
1708 inline UBool
isEmpty(void) const;
1711 * Return the capacity of the internal buffer of the UnicodeString object.
1712 * This is useful together with the getBuffer functions.
1713 * See there for details.
1715 * @return the number of UChars available in the internal buffer
1719 inline int32_t getCapacity(void) const;
1721 /* Other operations */
1724 * Generate a hash code for this object.
1725 * @return The hash code of this UnicodeString.
1728 inline int32_t hashCode(void) const;
1731 * Determine if this object contains a valid string.
1732 * A bogus string has no value. It is different from an empty string,
1733 * although in both cases isEmpty() returns TRUE and length() returns 0.
1734 * setToBogus() and isBogus() can be used to indicate that no string value is available.
1735 * For a bogus string, getBuffer() and getTerminatedBuffer() return NULL, and
1736 * length() returns 0.
1738 * @return TRUE if the string is valid, FALSE otherwise
1742 inline UBool
isBogus(void) const;
1745 //========================================
1747 //========================================
1749 /* Assignment operations */
1752 * Assignment operator. Replace the characters in this UnicodeString
1753 * with the characters from <TT>srcText</TT>.
1754 * @param srcText The text containing the characters to replace
1755 * @return a reference to this
1758 UnicodeString
&operator=(const UnicodeString
&srcText
);
1761 * Almost the same as the assignment operator.
1762 * Replace the characters in this UnicodeString
1763 * with the characters from <code>srcText</code>.
1765 * This function works the same for all strings except for ones that
1766 * are readonly aliases.
1767 * Starting with ICU 2.4, the assignment operator and the copy constructor
1768 * allocate a new buffer and copy the buffer contents even for readonly aliases.
1769 * This function implements the old, more efficient but less safe behavior
1770 * of making this string also a readonly alias to the same buffer.
1771 * The fastCopyFrom function must be used only if it is known that the lifetime of
1772 * this UnicodeString is at least as long as the lifetime of the aliased buffer
1773 * including its contents, for example for strings from resource bundles
1774 * or aliases to string contents.
1776 * @param src The text containing the characters to replace.
1777 * @return a reference to this
1780 UnicodeString
&fastCopyFrom(const UnicodeString
&src
);
1783 * Assignment operator. Replace the characters in this UnicodeString
1784 * with the code unit <TT>ch</TT>.
1785 * @param ch the code unit to replace
1786 * @return a reference to this
1789 inline UnicodeString
& operator= (UChar ch
);
1792 * Assignment operator. Replace the characters in this UnicodeString
1793 * with the code point <TT>ch</TT>.
1794 * @param ch the code point to replace
1795 * @return a reference to this
1798 inline UnicodeString
& operator= (UChar32 ch
);
1801 * Set the text in the UnicodeString object to the characters
1802 * in <TT>srcText</TT> in the range
1803 * [<TT>srcStart</TT>, <TT>srcText.length()</TT>).
1804 * <TT>srcText</TT> is not modified.
1805 * @param srcText the source for the new characters
1806 * @param srcStart the offset into <TT>srcText</TT> where new characters
1808 * @return a reference to this
1811 inline UnicodeString
& setTo(const UnicodeString
& srcText
,
1815 * Set the text in the UnicodeString object to the characters
1816 * in <TT>srcText</TT> in the range
1817 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
1818 * <TT>srcText</TT> is not modified.
1819 * @param srcText the source for the new characters
1820 * @param srcStart the offset into <TT>srcText</TT> where new characters
1822 * @param srcLength the number of characters in <TT>srcText</TT> in the
1824 * @return a reference to this
1827 inline UnicodeString
& setTo(const UnicodeString
& srcText
,
1832 * Set the text in the UnicodeString object to the characters in
1834 * <TT>srcText</TT> is not modified.
1835 * @param srcText the source for the new characters
1836 * @return a reference to this
1839 inline UnicodeString
& setTo(const UnicodeString
& srcText
);
1842 * Set the characters in the UnicodeString object to the characters
1843 * in <TT>srcChars</TT>. <TT>srcChars</TT> is not modified.
1844 * @param srcChars the source for the new characters
1845 * @param srcLength the number of Unicode characters in srcChars.
1846 * @return a reference to this
1849 inline UnicodeString
& setTo(const UChar
*srcChars
,
1853 * Set the characters in the UnicodeString object to the code unit
1855 * @param srcChar the code unit which becomes the UnicodeString's character
1857 * @return a reference to this
1860 UnicodeString
& setTo(UChar srcChar
);
1863 * Set the characters in the UnicodeString object to the code point
1865 * @param srcChar the code point which becomes the UnicodeString's character
1867 * @return a reference to this
1870 UnicodeString
& setTo(UChar32 srcChar
);
1873 * Aliasing setTo() function, analogous to the readonly-aliasing UChar* constructor.
1874 * The text will be used for the UnicodeString object, but
1875 * it will not be released when the UnicodeString is destroyed.
1876 * This has copy-on-write semantics:
1877 * When the string is modified, then the buffer is first copied into
1878 * newly allocated memory.
1879 * The aliased buffer is never modified.
1880 * In an assignment to another UnicodeString, the text will be aliased again,
1881 * so that both strings then alias the same readonly-text.
1883 * @param isTerminated specifies if <code>text</code> is <code>NUL</code>-terminated.
1884 * This must be true if <code>textLength==-1</code>.
1885 * @param text The characters to alias for the UnicodeString.
1886 * @param textLength The number of Unicode characters in <code>text</code> to alias.
1887 * If -1, then this constructor will determine the length
1888 * by calling <code>u_strlen()</code>.
1889 * @return a reference to this
1892 UnicodeString
&setTo(UBool isTerminated
,
1894 int32_t textLength
);
1897 * Aliasing setTo() function, analogous to the writable-aliasing UChar* constructor.
1898 * The text will be used for the UnicodeString object, but
1899 * it will not be released when the UnicodeString is destroyed.
1900 * This has write-through semantics:
1901 * For as long as the capacity of the buffer is sufficient, write operations
1902 * will directly affect the buffer. When more capacity is necessary, then
1903 * a new buffer will be allocated and the contents copied as with regularly
1904 * constructed strings.
1905 * In an assignment to another UnicodeString, the buffer will be copied.
1906 * The extract(UChar *dst) function detects whether the dst pointer is the same
1907 * as the string buffer itself and will in this case not copy the contents.
1909 * @param buffer The characters to alias for the UnicodeString.
1910 * @param buffLength The number of Unicode characters in <code>buffer</code> to alias.
1911 * @param buffCapacity The size of <code>buffer</code> in UChars.
1912 * @return a reference to this
1915 UnicodeString
&setTo(UChar
*buffer
,
1917 int32_t buffCapacity
);
1920 * Make this UnicodeString object invalid.
1921 * The string will test TRUE with isBogus().
1923 * A bogus string has no value. It is different from an empty string.
1924 * It can be used to indicate that no string value is available.
1925 * getBuffer() and getTerminatedBuffer() return NULL, and
1926 * length() returns 0.
1928 * This utility function is used throughout the UnicodeString
1929 * implementation to indicate that a UnicodeString operation failed,
1930 * and may be used in other functions,
1931 * especially but not exclusively when such functions do not
1932 * take a UErrorCode for simplicity.
1934 * The following methods, and no others, will clear a string object's bogus flag:
1936 * - remove(0, INT32_MAX)
1938 * - operator=() (assignment operator)
1941 * The simplest ways to turn a bogus string into an empty one
1942 * is to use the remove() function.
1943 * Examples for other functions that are equivalent to "set to empty string":
1946 * s.remove(); // set to an empty string (remove all), or
1947 * s.remove(0, INT32_MAX); // set to an empty string (remove all), or
1948 * s.truncate(0); // set to an empty string (complete truncation), or
1949 * s=UnicodeString(); // assign an empty string, or
1950 * s.setTo((UChar32)-1); // set to a pseudo code point that is out of range, or
1951 * static const UChar nul=0;
1952 * s.setTo(&nul, 0); // set to an empty C Unicode string
1962 * Set the character at the specified offset to the specified character.
1963 * @param offset A valid offset into the text of the character to set
1964 * @param ch The new character
1965 * @return A reference to this
1968 UnicodeString
& setCharAt(int32_t offset
,
1972 /* Append operations */
1975 * Append operator. Append the code unit <TT>ch</TT> to the UnicodeString
1977 * @param ch the code unit to be appended
1978 * @return a reference to this
1981 inline UnicodeString
& operator+= (UChar ch
);
1984 * Append operator. Append the code point <TT>ch</TT> to the UnicodeString
1986 * @param ch the code point to be appended
1987 * @return a reference to this
1990 inline UnicodeString
& operator+= (UChar32 ch
);
1993 * Append operator. Append the characters in <TT>srcText</TT> to the
1994 * UnicodeString object at offset <TT>start</TT>. <TT>srcText</TT> is
1996 * @param srcText the source for the new characters
1997 * @return a reference to this
2000 inline UnicodeString
& operator+= (const UnicodeString
& srcText
);
2003 * Append the characters
2004 * in <TT>srcText</TT> in the range
2005 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>) to the
2006 * UnicodeString object at offset <TT>start</TT>. <TT>srcText</TT>
2008 * @param srcText the source for the new characters
2009 * @param srcStart the offset into <TT>srcText</TT> where new characters
2011 * @param srcLength the number of characters in <TT>srcText</TT> in
2013 * @return a reference to this
2016 inline UnicodeString
& append(const UnicodeString
& srcText
,
2021 * Append the characters in <TT>srcText</TT> to the UnicodeString object at
2022 * offset <TT>start</TT>. <TT>srcText</TT> is not modified.
2023 * @param srcText the source for the new characters
2024 * @return a reference to this
2027 inline UnicodeString
& append(const UnicodeString
& srcText
);
2030 * Append the characters in <TT>srcChars</TT> in the range
2031 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>) to the UnicodeString
2033 * <TT>start</TT>. <TT>srcChars</TT> is not modified.
2034 * @param srcChars the source for the new characters
2035 * @param srcStart the offset into <TT>srcChars</TT> where new characters
2037 * @param srcLength the number of characters in <TT>srcChars</TT> in
2039 * @return a reference to this
2042 inline UnicodeString
& append(const UChar
*srcChars
,
2047 * Append the characters in <TT>srcChars</TT> to the UnicodeString object
2048 * at offset <TT>start</TT>. <TT>srcChars</TT> is not modified.
2049 * @param srcChars the source for the new characters
2050 * @param srcLength the number of Unicode characters in <TT>srcChars</TT>
2051 * @return a reference to this
2054 inline UnicodeString
& append(const UChar
*srcChars
,
2058 * Append the code unit <TT>srcChar</TT> to the UnicodeString object.
2059 * @param srcChar the code unit to append
2060 * @return a reference to this
2063 inline UnicodeString
& append(UChar srcChar
);
2066 * Append the code point <TT>srcChar</TT> to the UnicodeString object.
2067 * @param srcChar the code point to append
2068 * @return a reference to this
2071 inline UnicodeString
& append(UChar32 srcChar
);
2074 /* Insert operations */
2077 * Insert the characters in <TT>srcText</TT> in the range
2078 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>) into the UnicodeString
2079 * object at offset <TT>start</TT>. <TT>srcText</TT> is not modified.
2080 * @param start the offset where the insertion begins
2081 * @param srcText the source for the new characters
2082 * @param srcStart the offset into <TT>srcText</TT> where new characters
2084 * @param srcLength the number of characters in <TT>srcText</TT> in
2086 * @return a reference to this
2089 inline UnicodeString
& insert(int32_t start
,
2090 const UnicodeString
& srcText
,
2095 * Insert the characters in <TT>srcText</TT> into the UnicodeString object
2096 * at offset <TT>start</TT>. <TT>srcText</TT> is not modified.
2097 * @param start the offset where the insertion begins
2098 * @param srcText the source for the new characters
2099 * @return a reference to this
2102 inline UnicodeString
& insert(int32_t start
,
2103 const UnicodeString
& srcText
);
2106 * Insert the characters in <TT>srcChars</TT> in the range
2107 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>) into the UnicodeString
2108 * object at offset <TT>start</TT>. <TT>srcChars</TT> is not modified.
2109 * @param start the offset at which the insertion begins
2110 * @param srcChars the source for the new characters
2111 * @param srcStart the offset into <TT>srcChars</TT> where new characters
2113 * @param srcLength the number of characters in <TT>srcChars</TT>
2114 * in the insert string
2115 * @return a reference to this
2118 inline UnicodeString
& insert(int32_t start
,
2119 const UChar
*srcChars
,
2124 * Insert the characters in <TT>srcChars</TT> into the UnicodeString object
2125 * at offset <TT>start</TT>. <TT>srcChars</TT> is not modified.
2126 * @param start the offset where the insertion begins
2127 * @param srcChars the source for the new characters
2128 * @param srcLength the number of Unicode characters in srcChars.
2129 * @return a reference to this
2132 inline UnicodeString
& insert(int32_t start
,
2133 const UChar
*srcChars
,
2137 * Insert the code unit <TT>srcChar</TT> into the UnicodeString object at
2138 * offset <TT>start</TT>.
2139 * @param start the offset at which the insertion occurs
2140 * @param srcChar the code unit to insert
2141 * @return a reference to this
2144 inline UnicodeString
& insert(int32_t start
,
2148 * Insert the code point <TT>srcChar</TT> into the UnicodeString object at
2149 * offset <TT>start</TT>.
2150 * @param start the offset at which the insertion occurs
2151 * @param srcChar the code point to insert
2152 * @return a reference to this
2155 inline UnicodeString
& insert(int32_t start
,
2159 /* Replace operations */
2162 * Replace the characters in the range
2163 * [<TT>start</TT>, <TT>start + length</TT>) with the characters in
2164 * <TT>srcText</TT> in the range
2165 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
2166 * <TT>srcText</TT> is not modified.
2167 * @param start the offset at which the replace operation begins
2168 * @param length the number of characters to replace. The character at
2169 * <TT>start + length</TT> is not modified.
2170 * @param srcText the source for the new characters
2171 * @param srcStart the offset into <TT>srcText</TT> where new characters
2173 * @param srcLength the number of characters in <TT>srcText</TT> in
2174 * the replace string
2175 * @return a reference to this
2178 UnicodeString
& replace(int32_t start
,
2180 const UnicodeString
& srcText
,
2185 * Replace the characters in the range
2186 * [<TT>start</TT>, <TT>start + length</TT>)
2187 * with the characters in <TT>srcText</TT>. <TT>srcText</TT> is
2189 * @param start the offset at which the replace operation begins
2190 * @param length the number of characters to replace. The character at
2191 * <TT>start + length</TT> is not modified.
2192 * @param srcText the source for the new characters
2193 * @return a reference to this
2196 UnicodeString
& replace(int32_t start
,
2198 const UnicodeString
& srcText
);
2201 * Replace the characters in the range
2202 * [<TT>start</TT>, <TT>start + length</TT>) with the characters in
2203 * <TT>srcChars</TT> in the range
2204 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>). <TT>srcChars</TT>
2206 * @param start the offset at which the replace operation begins
2207 * @param length the number of characters to replace. The character at
2208 * <TT>start + length</TT> is not modified.
2209 * @param srcChars the source for the new characters
2210 * @param srcStart the offset into <TT>srcChars</TT> where new characters
2212 * @param srcLength the number of characters in <TT>srcChars</TT>
2213 * in the replace string
2214 * @return a reference to this
2217 UnicodeString
& replace(int32_t start
,
2219 const UChar
*srcChars
,
2224 * Replace the characters in the range
2225 * [<TT>start</TT>, <TT>start + length</TT>) with the characters in
2226 * <TT>srcChars</TT>. <TT>srcChars</TT> is not modified.
2227 * @param start the offset at which the replace operation begins
2228 * @param length number of characters to replace. The character at
2229 * <TT>start + length</TT> is not modified.
2230 * @param srcChars the source for the new characters
2231 * @param srcLength the number of Unicode characters in srcChars
2232 * @return a reference to this
2235 inline UnicodeString
& replace(int32_t start
,
2237 const UChar
*srcChars
,
2241 * Replace the characters in the range
2242 * [<TT>start</TT>, <TT>start + length</TT>) with the code unit
2244 * @param start the offset at which the replace operation begins
2245 * @param length the number of characters to replace. The character at
2246 * <TT>start + length</TT> is not modified.
2247 * @param srcChar the new code unit
2248 * @return a reference to this
2251 inline UnicodeString
& replace(int32_t start
,
2256 * Replace the characters in the range
2257 * [<TT>start</TT>, <TT>start + length</TT>) with the code point
2259 * @param start the offset at which the replace operation begins
2260 * @param length the number of characters to replace. The character at
2261 * <TT>start + length</TT> is not modified.
2262 * @param srcChar the new code point
2263 * @return a reference to this
2266 inline UnicodeString
& replace(int32_t start
,
2271 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2272 * with the characters in <TT>srcText</TT>. <TT>srcText</TT> is not modified.
2273 * @param start the offset at which the replace operation begins
2274 * @param limit the offset immediately following the replace range
2275 * @param srcText the source for the new characters
2276 * @return a reference to this
2279 inline UnicodeString
& replaceBetween(int32_t start
,
2281 const UnicodeString
& srcText
);
2284 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2285 * with the characters in <TT>srcText</TT> in the range
2286 * [<TT>srcStart</TT>, <TT>srcLimit</TT>). <TT>srcText</TT> is not modified.
2287 * @param start the offset at which the replace operation begins
2288 * @param limit the offset immediately following the replace range
2289 * @param srcText the source for the new characters
2290 * @param srcStart the offset into <TT>srcChars</TT> where new characters
2292 * @param srcLimit the offset immediately following the range to copy
2293 * in <TT>srcText</TT>
2294 * @return a reference to this
2297 inline UnicodeString
& replaceBetween(int32_t start
,
2299 const UnicodeString
& srcText
,
2304 * Replace a substring of this object with the given text.
2305 * @param start the beginning index, inclusive; <code>0 <= start
2307 * @param limit the ending index, exclusive; <code>start <= limit
2308 * <= length()</code>.
2309 * @param text the text to replace characters <code>start</code>
2310 * to <code>limit - 1</code>
2313 virtual void handleReplaceBetween(int32_t start
,
2315 const UnicodeString
& text
);
2319 * @return TRUE if it has MetaData
2322 virtual UBool
hasMetaData() const;
2325 * Copy a substring of this object, retaining attribute (out-of-band)
2326 * information. This method is used to duplicate or reorder substrings.
2327 * The destination index must not overlap the source range.
2329 * @param start the beginning index, inclusive; <code>0 <= start <=
2331 * @param limit the ending index, exclusive; <code>start <= limit <=
2333 * @param dest the destination index. The characters from
2334 * <code>start..limit-1</code> will be copied to <code>dest</code>.
2335 * Implementations of this method may assume that <code>dest <= start ||
2336 * dest >= limit</code>.
2339 virtual void copy(int32_t start
, int32_t limit
, int32_t dest
);
2341 /* Search and replace operations */
2344 * Replace all occurrences of characters in oldText with the characters
2346 * @param oldText the text containing the search text
2347 * @param newText the text containing the replacement text
2348 * @return a reference to this
2351 inline UnicodeString
& findAndReplace(const UnicodeString
& oldText
,
2352 const UnicodeString
& newText
);
2355 * Replace all occurrences of characters in oldText with characters
2357 * in the range [<TT>start</TT>, <TT>start + length</TT>).
2358 * @param start the start of the range in which replace will performed
2359 * @param length the length of the range in which replace will be performed
2360 * @param oldText the text containing the search text
2361 * @param newText the text containing the replacement text
2362 * @return a reference to this
2365 inline UnicodeString
& findAndReplace(int32_t start
,
2367 const UnicodeString
& oldText
,
2368 const UnicodeString
& newText
);
2371 * Replace all occurrences of characters in oldText in the range
2372 * [<TT>oldStart</TT>, <TT>oldStart + oldLength</TT>) with the characters
2373 * in newText in the range
2374 * [<TT>newStart</TT>, <TT>newStart + newLength</TT>)
2375 * in the range [<TT>start</TT>, <TT>start + length</TT>).
2376 * @param start the start of the range in which replace will performed
2377 * @param length the length of the range in which replace will be performed
2378 * @param oldText the text containing the search text
2379 * @param oldStart the start of the search range in <TT>oldText</TT>
2380 * @param oldLength the length of the search range in <TT>oldText</TT>
2381 * @param newText the text containing the replacement text
2382 * @param newStart the start of the replacement range in <TT>newText</TT>
2383 * @param newLength the length of the replacement range in <TT>newText</TT>
2384 * @return a reference to this
2387 UnicodeString
& findAndReplace(int32_t start
,
2389 const UnicodeString
& oldText
,
2392 const UnicodeString
& newText
,
2397 /* Remove operations */
2400 * Remove all characters from the UnicodeString object.
2401 * @return a reference to this
2404 inline UnicodeString
& remove(void);
2407 * Remove the characters in the range
2408 * [<TT>start</TT>, <TT>start + length</TT>) from the UnicodeString object.
2409 * @param start the offset of the first character to remove
2410 * @param length the number of characters to remove
2411 * @return a reference to this
2414 inline UnicodeString
& remove(int32_t start
,
2415 int32_t length
= (int32_t)INT32_MAX
);
2418 * Remove the characters in the range
2419 * [<TT>start</TT>, <TT>limit</TT>) from the UnicodeString object.
2420 * @param start the offset of the first character to remove
2421 * @param limit the offset immediately following the range to remove
2422 * @return a reference to this
2425 inline UnicodeString
& removeBetween(int32_t start
,
2426 int32_t limit
= (int32_t)INT32_MAX
);
2429 * Retain only the characters in the range
2430 * [<code>start</code>, <code>limit</code>) from the UnicodeString object.
2431 * Removes characters before <code>start</code> and at and after <code>limit</code>.
2432 * @param start the offset of the first character to retain
2433 * @param limit the offset immediately following the range to retain
2434 * @return a reference to this
2437 inline UnicodeString
&retainBetween(int32_t start
, int32_t limit
= INT32_MAX
);
2439 /* Length operations */
2442 * Pad the start of this UnicodeString with the character <TT>padChar</TT>.
2443 * If the length of this UnicodeString is less than targetLength,
2444 * length() - targetLength copies of padChar will be added to the
2445 * beginning of this UnicodeString.
2446 * @param targetLength the desired length of the string
2447 * @param padChar the character to use for padding. Defaults to
2449 * @return TRUE if the text was padded, FALSE otherwise.
2452 UBool
padLeading(int32_t targetLength
,
2453 UChar padChar
= 0x0020);
2456 * Pad the end of this UnicodeString with the character <TT>padChar</TT>.
2457 * If the length of this UnicodeString is less than targetLength,
2458 * length() - targetLength copies of padChar will be added to the
2459 * end of this UnicodeString.
2460 * @param targetLength the desired length of the string
2461 * @param padChar the character to use for padding. Defaults to
2463 * @return TRUE if the text was padded, FALSE otherwise.
2466 UBool
padTrailing(int32_t targetLength
,
2467 UChar padChar
= 0x0020);
2470 * Truncate this UnicodeString to the <TT>targetLength</TT>.
2471 * @param targetLength the desired length of this UnicodeString.
2472 * @return TRUE if the text was truncated, FALSE otherwise
2475 inline UBool
truncate(int32_t targetLength
);
2478 * Trims leading and trailing whitespace from this UnicodeString.
2479 * @return a reference to this
2482 UnicodeString
& trim(void);
2485 /* Miscellaneous operations */
2488 * Reverse this UnicodeString in place.
2489 * @return a reference to this
2492 inline UnicodeString
& reverse(void);
2495 * Reverse the range [<TT>start</TT>, <TT>start + length</TT>) in
2496 * this UnicodeString.
2497 * @param start the start of the range to reverse
2498 * @param length the number of characters to to reverse
2499 * @return a reference to this
2502 inline UnicodeString
& reverse(int32_t start
,
2506 * Convert the characters in this to UPPER CASE following the conventions of
2507 * the default locale.
2508 * @return A reference to this.
2511 UnicodeString
& toUpper(void);
2514 * Convert the characters in this to UPPER CASE following the conventions of
2515 * a specific locale.
2516 * @param locale The locale containing the conventions to use.
2517 * @return A reference to this.
2520 UnicodeString
& toUpper(const Locale
& locale
);
2523 * Convert the characters in this to lower case following the conventions of
2524 * the default locale.
2525 * @return A reference to this.
2528 UnicodeString
& toLower(void);
2531 * Convert the characters in this to lower case following the conventions of
2532 * a specific locale.
2533 * @param locale The locale containing the conventions to use.
2534 * @return A reference to this.
2537 UnicodeString
& toLower(const Locale
& locale
);
2539 #if !UCONFIG_NO_BREAK_ITERATION
2542 * Titlecase this string, convenience function using the default locale.
2544 * Casing is locale-dependent and context-sensitive.
2545 * Titlecasing uses a break iterator to find the first characters of words
2546 * that are to be titlecased. It titlecases those characters and lowercases
2549 * The titlecase break iterator can be provided to customize for arbitrary
2550 * styles, using rules and dictionaries beyond the standard iterators.
2551 * It may be more efficient to always provide an iterator to avoid
2552 * opening and closing one for each string.
2553 * The standard titlecase iterator for the root locale implements the
2554 * algorithm of Unicode TR 21.
2556 * This function uses only the setText(), first() and next() methods of the
2557 * provided break iterator.
2559 * @param titleIter A break iterator to find the first characters of words
2560 * that are to be titlecased.
2561 * If none is provided (0), then a standard titlecase
2562 * break iterator is opened.
2563 * Otherwise the provided iterator is set to the string's text.
2564 * @return A reference to this.
2567 UnicodeString
&toTitle(BreakIterator
*titleIter
);
2570 * Titlecase this string.
2572 * Casing is locale-dependent and context-sensitive.
2573 * Titlecasing uses a break iterator to find the first characters of words
2574 * that are to be titlecased. It titlecases those characters and lowercases
2577 * The titlecase break iterator can be provided to customize for arbitrary
2578 * styles, using rules and dictionaries beyond the standard iterators.
2579 * It may be more efficient to always provide an iterator to avoid
2580 * opening and closing one for each string.
2581 * The standard titlecase iterator for the root locale implements the
2582 * algorithm of Unicode TR 21.
2584 * This function uses only the setText(), first() and next() methods of the
2585 * provided break iterator.
2587 * @param titleIter A break iterator to find the first characters of words
2588 * that are to be titlecased.
2589 * If none is provided (0), then a standard titlecase
2590 * break iterator is opened.
2591 * Otherwise the provided iterator is set to the string's text.
2592 * @param locale The locale to consider.
2593 * @return A reference to this.
2596 UnicodeString
&toTitle(BreakIterator
*titleIter
, const Locale
&locale
);
2599 * Titlecase this string, with options.
2601 * Casing is locale-dependent and context-sensitive.
2602 * Titlecasing uses a break iterator to find the first characters of words
2603 * that are to be titlecased. It titlecases those characters and lowercases
2604 * all others. (This can be modified with options.)
2606 * The titlecase break iterator can be provided to customize for arbitrary
2607 * styles, using rules and dictionaries beyond the standard iterators.
2608 * It may be more efficient to always provide an iterator to avoid
2609 * opening and closing one for each string.
2610 * The standard titlecase iterator for the root locale implements the
2611 * algorithm of Unicode TR 21.
2613 * This function uses only the setText(), first() and next() methods of the
2614 * provided break iterator.
2616 * @param titleIter A break iterator to find the first characters of words
2617 * that are to be titlecased.
2618 * If none is provided (0), then a standard titlecase
2619 * break iterator is opened.
2620 * Otherwise the provided iterator is set to the string's text.
2621 * @param locale The locale to consider.
2622 * @param options Options bit set, see ucasemap_open().
2623 * @return A reference to this.
2624 * @see U_TITLECASE_NO_LOWERCASE
2625 * @see U_TITLECASE_NO_BREAK_ADJUSTMENT
2626 * @see ucasemap_open
2629 UnicodeString
&toTitle(BreakIterator
*titleIter
, const Locale
&locale
, uint32_t options
);
2634 * Case-fold the characters in this string.
2635 * Case-folding is locale-independent and not context-sensitive,
2636 * but there is an option for whether to include or exclude mappings for dotted I
2637 * and dotless i that are marked with 'I' in CaseFolding.txt.
2638 * The result may be longer or shorter than the original.
2640 * @param options Either U_FOLD_CASE_DEFAULT or U_FOLD_CASE_EXCLUDE_SPECIAL_I
2641 * @return A reference to this.
2644 UnicodeString
&foldCase(uint32_t options
=0 /*U_FOLD_CASE_DEFAULT*/);
2646 //========================================
2647 // Access to the internal buffer
2648 //========================================
2651 * Get a read/write pointer to the internal buffer.
2652 * The buffer is guaranteed to be large enough for at least minCapacity UChars,
2653 * writable, and is still owned by the UnicodeString object.
2654 * Calls to getBuffer(minCapacity) must not be nested, and
2655 * must be matched with calls to releaseBuffer(newLength).
2656 * If the string buffer was read-only or shared,
2657 * then it will be reallocated and copied.
2659 * An attempted nested call will return 0, and will not further modify the
2660 * state of the UnicodeString object.
2661 * It also returns 0 if the string is bogus.
2663 * The actual capacity of the string buffer may be larger than minCapacity.
2664 * getCapacity() returns the actual capacity.
2665 * For many operations, the full capacity should be used to avoid reallocations.
2667 * While the buffer is "open" between getBuffer(minCapacity)
2668 * and releaseBuffer(newLength), the following applies:
2669 * - The string length is set to 0.
2670 * - Any read API call on the UnicodeString object will behave like on a 0-length string.
2671 * - Any write API call on the UnicodeString object is disallowed and will have no effect.
2672 * - You can read from and write to the returned buffer.
2673 * - The previous string contents will still be in the buffer;
2674 * if you want to use it, then you need to call length() before getBuffer(minCapacity).
2675 * If the length() was greater than minCapacity, then any contents after minCapacity
2677 * The buffer contents is not NUL-terminated by getBuffer().
2678 * If length()<getCapacity() then you can terminate it by writing a NUL
2679 * at index length().
2680 * - You must call releaseBuffer(newLength) before and in order to
2681 * return to normal UnicodeString operation.
2683 * @param minCapacity the minimum number of UChars that are to be available
2684 * in the buffer, starting at the returned pointer;
2685 * default to the current string capacity if minCapacity==-1
2686 * @return a writable pointer to the internal string buffer,
2687 * or 0 if an error occurs (nested calls, out of memory)
2689 * @see releaseBuffer
2690 * @see getTerminatedBuffer()
2693 UChar
*getBuffer(int32_t minCapacity
);
2696 * Release a read/write buffer on a UnicodeString object with an
2697 * "open" getBuffer(minCapacity).
2698 * This function must be called in a matched pair with getBuffer(minCapacity).
2699 * releaseBuffer(newLength) must be called if and only if a getBuffer(minCapacity) is "open".
2701 * It will set the string length to newLength, at most to the current capacity.
2702 * If newLength==-1 then it will set the length according to the
2703 * first NUL in the buffer, or to the capacity if there is no NUL.
2705 * After calling releaseBuffer(newLength) the UnicodeString is back to normal operation.
2707 * @param newLength the new length of the UnicodeString object;
2708 * defaults to the current capacity if newLength is greater than that;
2709 * if newLength==-1, it defaults to u_strlen(buffer) but not more than
2710 * the current capacity of the string
2712 * @see getBuffer(int32_t minCapacity)
2715 void releaseBuffer(int32_t newLength
=-1);
2718 * Get a read-only pointer to the internal buffer.
2719 * This can be called at any time on a valid UnicodeString.
2721 * It returns 0 if the string is bogus, or
2722 * during an "open" getBuffer(minCapacity).
2724 * It can be called as many times as desired.
2725 * The pointer that it returns will remain valid until the UnicodeString object is modified,
2726 * at which time the pointer is semantically invalidated and must not be used any more.
2728 * The capacity of the buffer can be determined with getCapacity().
2729 * The part after length() may or may not be initialized and valid,
2730 * depending on the history of the UnicodeString object.
2732 * The buffer contents is (probably) not NUL-terminated.
2733 * You can check if it is with
2734 * <code>(s.length()<s.getCapacity() && buffer[s.length()]==0)</code>.
2735 * (See getTerminatedBuffer().)
2737 * The buffer may reside in read-only memory. Its contents must not
2740 * @return a read-only pointer to the internal string buffer,
2741 * or 0 if the string is empty or bogus
2743 * @see getBuffer(int32_t minCapacity)
2744 * @see getTerminatedBuffer()
2747 inline const UChar
*getBuffer() const;
2750 * Get a read-only pointer to the internal buffer,
2751 * making sure that it is NUL-terminated.
2752 * This can be called at any time on a valid UnicodeString.
2754 * It returns 0 if the string is bogus, or
2755 * during an "open" getBuffer(minCapacity), or if the buffer cannot
2756 * be NUL-terminated (because memory allocation failed).
2758 * It can be called as many times as desired.
2759 * The pointer that it returns will remain valid until the UnicodeString object is modified,
2760 * at which time the pointer is semantically invalidated and must not be used any more.
2762 * The capacity of the buffer can be determined with getCapacity().
2763 * The part after length()+1 may or may not be initialized and valid,
2764 * depending on the history of the UnicodeString object.
2766 * The buffer contents is guaranteed to be NUL-terminated.
2767 * getTerminatedBuffer() may reallocate the buffer if a terminating NUL
2769 * For this reason, this function is not const, unlike getBuffer().
2770 * Note that a UnicodeString may also contain NUL characters as part of its contents.
2772 * The buffer may reside in read-only memory. Its contents must not
2775 * @return a read-only pointer to the internal string buffer,
2776 * or 0 if the string is empty or bogus
2778 * @see getBuffer(int32_t minCapacity)
2782 inline const UChar
*getTerminatedBuffer();
2784 //========================================
2786 //========================================
2788 /** Construct an empty UnicodeString.
2794 * Construct a UnicodeString with capacity to hold <TT>capacity</TT> UChars
2795 * @param capacity the number of UChars this UnicodeString should hold
2796 * before a resize is necessary; if count is greater than 0 and count
2797 * code points c take up more space than capacity, then capacity is adjusted
2799 * @param c is used to initially fill the string
2800 * @param count specifies how many code points c are to be written in the
2804 UnicodeString(int32_t capacity
, UChar32 c
, int32_t count
);
2807 * Single UChar (code unit) constructor.
2808 * @param ch the character to place in the UnicodeString
2811 UnicodeString(UChar ch
);
2814 * Single UChar32 (code point) constructor.
2815 * @param ch the character to place in the UnicodeString
2818 UnicodeString(UChar32 ch
);
2821 * UChar* constructor.
2822 * @param text The characters to place in the UnicodeString. <TT>text</TT>
2823 * must be NULL (U+0000) terminated.
2826 UnicodeString(const UChar
*text
);
2829 * UChar* constructor.
2830 * @param text The characters to place in the UnicodeString.
2831 * @param textLength The number of Unicode characters in <TT>text</TT>
2835 UnicodeString(const UChar
*text
,
2836 int32_t textLength
);
2839 * Readonly-aliasing UChar* constructor.
2840 * The text will be used for the UnicodeString object, but
2841 * it will not be released when the UnicodeString is destroyed.
2842 * This has copy-on-write semantics:
2843 * When the string is modified, then the buffer is first copied into
2844 * newly allocated memory.
2845 * The aliased buffer is never modified.
2846 * In an assignment to another UnicodeString, the text will be aliased again,
2847 * so that both strings then alias the same readonly-text.
2849 * @param isTerminated specifies if <code>text</code> is <code>NUL</code>-terminated.
2850 * This must be true if <code>textLength==-1</code>.
2851 * @param text The characters to alias for the UnicodeString.
2852 * @param textLength The number of Unicode characters in <code>text</code> to alias.
2853 * If -1, then this constructor will determine the length
2854 * by calling <code>u_strlen()</code>.
2857 UnicodeString(UBool isTerminated
,
2859 int32_t textLength
);
2862 * Writable-aliasing UChar* constructor.
2863 * The text will be used for the UnicodeString object, but
2864 * it will not be released when the UnicodeString is destroyed.
2865 * This has write-through semantics:
2866 * For as long as the capacity of the buffer is sufficient, write operations
2867 * will directly affect the buffer. When more capacity is necessary, then
2868 * a new buffer will be allocated and the contents copied as with regularly
2869 * constructed strings.
2870 * In an assignment to another UnicodeString, the buffer will be copied.
2871 * The extract(UChar *dst) function detects whether the dst pointer is the same
2872 * as the string buffer itself and will in this case not copy the contents.
2874 * @param buffer The characters to alias for the UnicodeString.
2875 * @param buffLength The number of Unicode characters in <code>buffer</code> to alias.
2876 * @param buffCapacity The size of <code>buffer</code> in UChars.
2879 UnicodeString(UChar
*buffer
, int32_t buffLength
, int32_t buffCapacity
);
2881 #if U_CHARSET_IS_UTF8 || !UCONFIG_NO_CONVERSION
2884 * char* constructor.
2885 * @param codepageData an array of bytes, null-terminated,
2886 * in the platform's default codepage.
2889 UnicodeString(const char *codepageData
);
2892 * char* constructor.
2893 * @param codepageData an array of bytes in the platform's default codepage.
2894 * @param dataLength The number of bytes in <TT>codepageData</TT>.
2897 UnicodeString(const char *codepageData
, int32_t dataLength
);
2901 #if !UCONFIG_NO_CONVERSION
2904 * char* constructor.
2905 * @param codepageData an array of bytes, null-terminated
2906 * @param codepage the encoding of <TT>codepageData</TT>. The special
2907 * value 0 for <TT>codepage</TT> indicates that the text is in the
2908 * platform's default codepage.
2910 * If <code>codepage</code> is an empty string (<code>""</code>),
2911 * then a simple conversion is performed on the codepage-invariant
2912 * subset ("invariant characters") of the platform encoding. See utypes.h.
2913 * Recommendation: For invariant-character strings use the constructor
2914 * UnicodeString(const char *src, int32_t length, enum EInvariant inv)
2915 * because it avoids object code dependencies of UnicodeString on
2916 * the conversion code.
2920 UnicodeString(const char *codepageData
, const char *codepage
);
2923 * char* constructor.
2924 * @param codepageData an array of bytes.
2925 * @param dataLength The number of bytes in <TT>codepageData</TT>.
2926 * @param codepage the encoding of <TT>codepageData</TT>. The special
2927 * value 0 for <TT>codepage</TT> indicates that the text is in the
2928 * platform's default codepage.
2929 * If <code>codepage</code> is an empty string (<code>""</code>),
2930 * then a simple conversion is performed on the codepage-invariant
2931 * subset ("invariant characters") of the platform encoding. See utypes.h.
2932 * Recommendation: For invariant-character strings use the constructor
2933 * UnicodeString(const char *src, int32_t length, enum EInvariant inv)
2934 * because it avoids object code dependencies of UnicodeString on
2935 * the conversion code.
2939 UnicodeString(const char *codepageData
, int32_t dataLength
, const char *codepage
);
2942 * char * / UConverter constructor.
2943 * This constructor uses an existing UConverter object to
2944 * convert the codepage string to Unicode and construct a UnicodeString
2947 * The converter is reset at first.
2948 * If the error code indicates a failure before this constructor is called,
2949 * or if an error occurs during conversion or construction,
2950 * then the string will be bogus.
2952 * This function avoids the overhead of opening and closing a converter if
2953 * multiple strings are constructed.
2955 * @param src input codepage string
2956 * @param srcLength length of the input string, can be -1 for NUL-terminated strings
2957 * @param cnv converter object (ucnv_resetToUnicode() will be called),
2958 * can be NULL for the default converter
2959 * @param errorCode normal ICU error code
2963 const char *src
, int32_t srcLength
,
2965 UErrorCode
&errorCode
);
2970 * Constructs a Unicode string from an invariant-character char * string.
2971 * About invariant characters see utypes.h.
2972 * This constructor has no runtime dependency on conversion code and is
2973 * therefore recommended over ones taking a charset name string
2974 * (where the empty string "" indicates invariant-character conversion).
2976 * Use the macro US_INV as the third, signature-distinguishing parameter.
2980 * void fn(const char *s) {
2981 * UnicodeString ustr(s, -1, US_INV);
2986 * @param src String using only invariant characters.
2987 * @param length Length of src, or -1 if NUL-terminated.
2988 * @param inv Signature-distinguishing paramater, use US_INV.
2993 UnicodeString(const char *src
, int32_t length
, enum EInvariant inv
);
2998 * @param that The UnicodeString object to copy.
3001 UnicodeString(const UnicodeString
& that
);
3004 * 'Substring' constructor from tail of source string.
3005 * @param src The UnicodeString object to copy.
3006 * @param srcStart The offset into <tt>src</tt> at which to start copying.
3009 UnicodeString(const UnicodeString
& src
, int32_t srcStart
);
3012 * 'Substring' constructor from subrange of source string.
3013 * @param src The UnicodeString object to copy.
3014 * @param srcStart The offset into <tt>src</tt> at which to start copying.
3015 * @param srcLength The number of characters from <tt>src</tt> to copy.
3018 UnicodeString(const UnicodeString
& src
, int32_t srcStart
, int32_t srcLength
);
3021 * Clone this object, an instance of a subclass of Replaceable.
3022 * Clones can be used concurrently in multiple threads.
3023 * If a subclass does not implement clone(), or if an error occurs,
3024 * then NULL is returned.
3025 * The clone functions in all subclasses return a pointer to a Replaceable
3026 * because some compilers do not support covariant (same-as-this)
3027 * return types; cast to the appropriate subclass if necessary.
3028 * The caller must delete the clone.
3030 * @return a clone of this object
3032 * @see Replaceable::clone
3033 * @see getDynamicClassID
3036 virtual Replaceable
*clone() const;
3041 virtual ~UnicodeString();
3044 * Create a UnicodeString from a UTF-8 string.
3045 * Illegal input is replaced with U+FFFD. Otherwise, errors result in a bogus string.
3046 * Calls u_strFromUTF8WithSub().
3048 * @param utf8 UTF-8 input string.
3049 * Note that a StringPiece can be implicitly constructed
3050 * from a std::string or a NUL-terminated const char * string.
3051 * @return A UnicodeString with equivalent UTF-16 contents.
3056 static UnicodeString
fromUTF8(const StringPiece
&utf8
);
3059 * Create a UnicodeString from a UTF-32 string.
3060 * Illegal input is replaced with U+FFFD. Otherwise, errors result in a bogus string.
3061 * Calls u_strFromUTF32WithSub().
3063 * @param utf32 UTF-32 input string. Must not be NULL.
3064 * @param length Length of the input string, or -1 if NUL-terminated.
3065 * @return A UnicodeString with equivalent UTF-16 contents.
3069 static UnicodeString
fromUTF32(const UChar32
*utf32
, int32_t length
);
3071 /* Miscellaneous operations */
3074 * Unescape a string of characters and return a string containing
3075 * the result. The following escape sequences are recognized:
3077 * \\uhhhh 4 hex digits; h in [0-9A-Fa-f]
3078 * \\Uhhhhhhhh 8 hex digits
3079 * \\xhh 1-2 hex digits
3080 * \\ooo 1-3 octal digits; o in [0-7]
3081 * \\cX control-X; X is masked with 0x1F
3083 * as well as the standard ANSI C escapes:
3085 * \\a => U+0007, \\b => U+0008, \\t => U+0009, \\n => U+000A,
3086 * \\v => U+000B, \\f => U+000C, \\r => U+000D, \\e => U+001B,
3087 * \\" => U+0022, \\' => U+0027, \\? => U+003F, \\\\ => U+005C
3089 * Anything else following a backslash is generically escaped. For
3090 * example, "[a\\-z]" returns "[a-z]".
3092 * If an escape sequence is ill-formed, this method returns an empty
3093 * string. An example of an ill-formed sequence is "\\u" followed by
3094 * fewer than 4 hex digits.
3096 * This function is similar to u_unescape() but not identical to it.
3097 * The latter takes a source char*, so it does escape recognition
3098 * and also invariant conversion.
3100 * @return a string with backslash escapes interpreted, or an
3101 * empty string on error.
3102 * @see UnicodeString#unescapeAt()
3104 * @see u_unescapeAt()
3107 UnicodeString
unescape() const;
3110 * Unescape a single escape sequence and return the represented
3111 * character. See unescape() for a listing of the recognized escape
3112 * sequences. The character at offset-1 is assumed (without
3113 * checking) to be a backslash. If the escape sequence is
3114 * ill-formed, or the offset is out of range, (UChar32)0xFFFFFFFF is
3117 * @param offset an input output parameter. On input, it is the
3118 * offset into this string where the escape sequence is located,
3119 * after the initial backslash. On output, it is advanced after the
3120 * last character parsed. On error, it is not advanced at all.
3121 * @return the character represented by the escape sequence at
3122 * offset, or (UChar32)0xFFFFFFFF on error.
3123 * @see UnicodeString#unescape()
3125 * @see u_unescapeAt()
3128 UChar32
unescapeAt(int32_t &offset
) const;
3131 * ICU "poor man's RTTI", returns a UClassID for this class.
3135 static UClassID U_EXPORT2
getStaticClassID();
3138 * ICU "poor man's RTTI", returns a UClassID for the actual class.
3142 virtual UClassID
getDynamicClassID() const;
3144 //========================================
3145 // Implementation methods
3146 //========================================
3150 * Implement Replaceable::getLength() (see jitterbug 1027).
3153 virtual int32_t getLength() const;
3156 * The change in Replaceable to use virtual getCharAt() allows
3157 * UnicodeString::charAt() to be inline again (see jitterbug 709).
3160 virtual UChar
getCharAt(int32_t offset
) const;
3163 * The change in Replaceable to use virtual getChar32At() allows
3164 * UnicodeString::char32At() to be inline again (see jitterbug 709).
3167 virtual UChar32
getChar32At(int32_t offset
) const;
3170 // For char* constructors. Could be made public.
3171 UnicodeString
&setToUTF8(const StringPiece
&utf8
);
3172 // For extract(char*).
3173 // We could make a toUTF8(target, capacity, errorCode) public but not
3174 // this version: New API will be cleaner if we make callers create substrings
3175 // rather than having start+length on every method,
3176 // and it should take a UErrorCode&.
3178 toUTF8(int32_t start
, int32_t len
,
3179 char *target
, int32_t capacity
) const;
3183 doCompare(int32_t start
,
3185 const UnicodeString
& srcText
,
3187 int32_t srcLength
) const;
3189 int8_t doCompare(int32_t start
,
3191 const UChar
*srcChars
,
3193 int32_t srcLength
) const;
3196 doCompareCodePointOrder(int32_t start
,
3198 const UnicodeString
& srcText
,
3200 int32_t srcLength
) const;
3202 int8_t doCompareCodePointOrder(int32_t start
,
3204 const UChar
*srcChars
,
3206 int32_t srcLength
) const;
3209 doCaseCompare(int32_t start
,
3211 const UnicodeString
&srcText
,
3214 uint32_t options
) const;
3217 doCaseCompare(int32_t start
,
3219 const UChar
*srcChars
,
3222 uint32_t options
) const;
3224 int32_t doIndexOf(UChar c
,
3226 int32_t length
) const;
3228 int32_t doIndexOf(UChar32 c
,
3230 int32_t length
) const;
3232 int32_t doLastIndexOf(UChar c
,
3234 int32_t length
) const;
3236 int32_t doLastIndexOf(UChar32 c
,
3238 int32_t length
) const;
3240 void doExtract(int32_t start
,
3243 int32_t dstStart
) const;
3245 inline void doExtract(int32_t start
,
3247 UnicodeString
& target
) const;
3249 inline UChar
doCharAt(int32_t offset
) const;
3251 UnicodeString
& doReplace(int32_t start
,
3253 const UnicodeString
& srcText
,
3257 UnicodeString
& doReplace(int32_t start
,
3259 const UChar
*srcChars
,
3263 UnicodeString
& doReverse(int32_t start
,
3266 // calculate hash code
3267 int32_t doHashCode(void) const;
3269 // get pointer to start of array
3270 // these do not check for kOpenGetBuffer, unlike the public getBuffer() function
3271 inline UChar
* getArrayStart(void);
3272 inline const UChar
* getArrayStart(void) const;
3274 // A UnicodeString object (not necessarily its current buffer)
3275 // is writable unless it isBogus() or it has an "open" getBuffer(minCapacity).
3276 inline UBool
isWritable() const;
3278 // Is the current buffer writable?
3279 inline UBool
isBufferWritable() const;
3281 // None of the following does releaseArray().
3282 inline void setLength(int32_t len
); // sets only fShortLength and fLength
3283 inline void setToEmpty(); // sets fFlags=kShortString
3284 inline void setArray(UChar
*array
, int32_t len
, int32_t capacity
); // does not set fFlags
3286 // allocate the array; result may be fStackBuffer
3287 // sets refCount to 1 if appropriate
3288 // sets fArray, fCapacity, and fFlags
3289 // returns boolean for success or failure
3290 UBool
allocate(int32_t capacity
);
3292 // release the array if owned
3293 void releaseArray(void);
3295 // turn a bogus string into an empty one
3298 // implements assigment operator, copy constructor, and fastCopyFrom()
3299 UnicodeString
©From(const UnicodeString
&src
, UBool fastCopy
=FALSE
);
3301 // Pin start and limit to acceptable values.
3302 inline void pinIndex(int32_t& start
) const;
3303 inline void pinIndices(int32_t& start
,
3304 int32_t& length
) const;
3306 #if !UCONFIG_NO_CONVERSION
3308 /* Internal extract() using UConverter. */
3309 int32_t doExtract(int32_t start
, int32_t length
,
3310 char *dest
, int32_t destCapacity
,
3312 UErrorCode
&errorCode
) const;
3315 * Real constructor for converting from codepage data.
3316 * It assumes that it is called with !fRefCounted.
3318 * If <code>codepage==0</code>, then the default converter
3319 * is used for the platform encoding.
3320 * If <code>codepage</code> is an empty string (<code>""</code>),
3321 * then a simple conversion is performed on the codepage-invariant
3322 * subset ("invariant characters") of the platform encoding. See utypes.h.
3324 void doCodepageCreate(const char *codepageData
,
3326 const char *codepage
);
3329 * Worker function for creating a UnicodeString from
3330 * a codepage string using a UConverter.
3333 doCodepageCreate(const char *codepageData
,
3335 UConverter
*converter
,
3336 UErrorCode
&status
);
3341 * This function is called when write access to the array
3344 * We need to make a copy of the array if
3345 * the buffer is read-only, or
3346 * the buffer is refCounted (shared), and refCount>1, or
3347 * the buffer is too small.
3349 * Return FALSE if memory could not be allocated.
3351 UBool
cloneArrayIfNeeded(int32_t newCapacity
= -1,
3352 int32_t growCapacity
= -1,
3353 UBool doCopyArray
= TRUE
,
3354 int32_t **pBufferToDelete
= 0,
3355 UBool forceClone
= FALSE
);
3357 // common function for case mappings
3359 caseMap(BreakIterator
*titleIter
,
3362 int32_t toWhichCase
);
3366 int32_t removeRef(void);
3367 int32_t refCount(void) const;
3371 // Set the stack buffer size so that sizeof(UnicodeString) is a multiple of sizeof(pointer):
3372 // 32-bit pointers: 4+1+1+13*2 = 32 bytes
3373 // 64-bit pointers: 8+1+1+15*2 = 40 bytes
3374 US_STACKBUF_SIZE
= sizeof(void *)==4 ? 13 : 15, // Size of stack buffer for small strings
3375 kInvalidUChar
=0xffff, // invalid UChar index
3376 kGrowSize
=128, // grow size for this buffer
3377 kInvalidHashCode
=0, // invalid hash code
3378 kEmptyHashCode
=1, // hash code for empty string
3380 // bit flag values for fFlags
3381 kIsBogus
=1, // this string is bogus, i.e., not valid or NULL
3382 kUsingStackBuffer
=2,// fArray==fStackBuffer
3383 kRefCounted
=4, // there is a refCount field before the characters in fArray
3384 kBufferIsReadonly
=8,// do not write to this buffer
3385 kOpenGetBuffer
=16, // getBuffer(minCapacity) was called (is "open"),
3386 // and releaseBuffer(newLength) must be called
3388 // combined values for convenience
3389 kShortString
=kUsingStackBuffer
,
3390 kLongString
=kRefCounted
,
3391 kReadonlyAlias
=kBufferIsReadonly
,
3395 friend class StringThreadTest
;
3397 union StackBufferOrFields
; // forward declaration necessary before friend declaration
3398 friend union StackBufferOrFields
; // make US_STACKBUF_SIZE visible inside fUnion
3401 * The following are all the class fields that are stored
3402 * in each UnicodeString object.
3403 * Note that UnicodeString has virtual functions,
3404 * therefore there is an implicit vtable pointer
3405 * as the first real field.
3406 * The fields should be aligned such that no padding is
3407 * necessary, mostly by having larger types first.
3408 * On 32-bit machines, the size should be 32 bytes,
3409 * on 64-bit machines (8-byte pointers), it should be 40 bytes.
3411 // (implicit) *vtable;
3412 int8_t fShortLength
; // 0..127: length <0: real length is in fUnion.fFields.fLength
3413 uint8_t fFlags
; // bit flags: see constants above
3414 union StackBufferOrFields
{
3415 // fStackBuffer is used iff (fFlags&kUsingStackBuffer)
3416 // else fFields is used
3417 UChar fStackBuffer
[US_STACKBUF_SIZE
]; // buffer for small strings
3419 uint16_t fPadding
; // align the following field at 8B (32b pointers) or 12B (64b)
3420 int32_t fLength
; // number of characters in fArray if >127; else undefined
3421 UChar
*fArray
; // the Unicode data (aligned at 12B (32b pointers) or 16B (64b))
3422 int32_t fCapacity
; // sizeof fArray
3428 * Create a new UnicodeString with the concatenation of two others.
3430 * @param s1 The first string to be copied to the new one.
3431 * @param s2 The second string to be copied to the new one, after s1.
3432 * @return UnicodeString(s1).append(s2)
3435 U_COMMON_API UnicodeString U_EXPORT2
3436 operator+ (const UnicodeString
&s1
, const UnicodeString
&s2
);
3438 //========================================
3440 //========================================
3442 //========================================
3444 //========================================
3447 UnicodeString::pinIndex(int32_t& start
) const
3452 } else if(start
> length()) {
3458 UnicodeString::pinIndices(int32_t& start
,
3459 int32_t& _length
) const
3462 int32_t len
= length();
3465 } else if(start
> len
) {
3470 } else if(_length
> (len
- start
)) {
3471 _length
= (len
- start
);
3476 UnicodeString::getArrayStart()
3477 { return (fFlags
&kUsingStackBuffer
) ? fUnion
.fStackBuffer
: fUnion
.fFields
.fArray
; }
3480 UnicodeString::getArrayStart() const
3481 { return (fFlags
&kUsingStackBuffer
) ? fUnion
.fStackBuffer
: fUnion
.fFields
.fArray
; }
3483 //========================================
3484 // Read-only implementation methods
3485 //========================================
3487 UnicodeString::length() const
3488 { return fShortLength
>=0 ? fShortLength
: fUnion
.fFields
.fLength
; }
3491 UnicodeString::getCapacity() const
3492 { return (fFlags
&kUsingStackBuffer
) ? US_STACKBUF_SIZE
: fUnion
.fFields
.fCapacity
; }
3495 UnicodeString::hashCode() const
3496 { return doHashCode(); }
3499 UnicodeString::isBogus() const
3500 { return (UBool
)(fFlags
& kIsBogus
); }
3503 UnicodeString::isWritable() const
3504 { return (UBool
)!(fFlags
&(kOpenGetBuffer
|kIsBogus
)); }
3507 UnicodeString::isBufferWritable() const
3510 !(fFlags
&(kOpenGetBuffer
|kIsBogus
|kBufferIsReadonly
)) &&
3511 (!(fFlags
&kRefCounted
) || refCount()==1));
3514 inline const UChar
*
3515 UnicodeString::getBuffer() const {
3516 if(fFlags
&(kIsBogus
|kOpenGetBuffer
)) {
3518 } else if(fFlags
&kUsingStackBuffer
) {
3519 return fUnion
.fStackBuffer
;
3521 return fUnion
.fFields
.fArray
;
3525 //========================================
3526 // Read-only alias methods
3527 //========================================
3529 UnicodeString::doCompare(int32_t start
,
3531 const UnicodeString
& srcText
,
3533 int32_t srcLength
) const
3535 if(srcText
.isBogus()) {
3536 return (int8_t)!isBogus(); // 0 if both are bogus, 1 otherwise
3538 srcText
.pinIndices(srcStart
, srcLength
);
3539 return doCompare(start
, thisLength
, srcText
.getArrayStart(), srcStart
, srcLength
);
3544 UnicodeString::operator== (const UnicodeString
& text
) const
3547 return text
.isBogus();
3549 int32_t len
= length(), textLength
= text
.length();
3552 len
== textLength
&&
3553 doCompare(0, len
, text
, 0, textLength
) == 0;
3558 UnicodeString::operator!= (const UnicodeString
& text
) const
3559 { return (! operator==(text
)); }
3562 UnicodeString::operator> (const UnicodeString
& text
) const
3563 { return doCompare(0, length(), text
, 0, text
.length()) == 1; }
3566 UnicodeString::operator< (const UnicodeString
& text
) const
3567 { return doCompare(0, length(), text
, 0, text
.length()) == -1; }
3570 UnicodeString::operator>= (const UnicodeString
& text
) const
3571 { return doCompare(0, length(), text
, 0, text
.length()) != -1; }
3574 UnicodeString::operator<= (const UnicodeString
& text
) const
3575 { return doCompare(0, length(), text
, 0, text
.length()) != 1; }
3578 UnicodeString::compare(const UnicodeString
& text
) const
3579 { return doCompare(0, length(), text
, 0, text
.length()); }
3582 UnicodeString::compare(int32_t start
,
3584 const UnicodeString
& srcText
) const
3585 { return doCompare(start
, _length
, srcText
, 0, srcText
.length()); }
3588 UnicodeString::compare(const UChar
*srcChars
,
3589 int32_t srcLength
) const
3590 { return doCompare(0, length(), srcChars
, 0, srcLength
); }
3593 UnicodeString::compare(int32_t start
,
3595 const UnicodeString
& srcText
,
3597 int32_t srcLength
) const
3598 { return doCompare(start
, _length
, srcText
, srcStart
, srcLength
); }
3601 UnicodeString::compare(int32_t start
,
3603 const UChar
*srcChars
) const
3604 { return doCompare(start
, _length
, srcChars
, 0, _length
); }
3607 UnicodeString::compare(int32_t start
,
3609 const UChar
*srcChars
,
3611 int32_t srcLength
) const
3612 { return doCompare(start
, _length
, srcChars
, srcStart
, srcLength
); }
3615 UnicodeString::compareBetween(int32_t start
,
3617 const UnicodeString
& srcText
,
3619 int32_t srcLimit
) const
3620 { return doCompare(start
, limit
- start
,
3621 srcText
, srcStart
, srcLimit
- srcStart
); }
3624 UnicodeString::doCompareCodePointOrder(int32_t start
,
3626 const UnicodeString
& srcText
,
3628 int32_t srcLength
) const
3630 if(srcText
.isBogus()) {
3631 return (int8_t)!isBogus(); // 0 if both are bogus, 1 otherwise
3633 srcText
.pinIndices(srcStart
, srcLength
);
3634 return doCompareCodePointOrder(start
, thisLength
, srcText
.getArrayStart(), srcStart
, srcLength
);
3639 UnicodeString::compareCodePointOrder(const UnicodeString
& text
) const
3640 { return doCompareCodePointOrder(0, length(), text
, 0, text
.length()); }
3643 UnicodeString::compareCodePointOrder(int32_t start
,
3645 const UnicodeString
& srcText
) const
3646 { return doCompareCodePointOrder(start
, _length
, srcText
, 0, srcText
.length()); }
3649 UnicodeString::compareCodePointOrder(const UChar
*srcChars
,
3650 int32_t srcLength
) const
3651 { return doCompareCodePointOrder(0, length(), srcChars
, 0, srcLength
); }
3654 UnicodeString::compareCodePointOrder(int32_t start
,
3656 const UnicodeString
& srcText
,
3658 int32_t srcLength
) const
3659 { return doCompareCodePointOrder(start
, _length
, srcText
, srcStart
, srcLength
); }
3662 UnicodeString::compareCodePointOrder(int32_t start
,
3664 const UChar
*srcChars
) const
3665 { return doCompareCodePointOrder(start
, _length
, srcChars
, 0, _length
); }
3668 UnicodeString::compareCodePointOrder(int32_t start
,
3670 const UChar
*srcChars
,
3672 int32_t srcLength
) const
3673 { return doCompareCodePointOrder(start
, _length
, srcChars
, srcStart
, srcLength
); }
3676 UnicodeString::compareCodePointOrderBetween(int32_t start
,
3678 const UnicodeString
& srcText
,
3680 int32_t srcLimit
) const
3681 { return doCompareCodePointOrder(start
, limit
- start
,
3682 srcText
, srcStart
, srcLimit
- srcStart
); }
3685 UnicodeString::doCaseCompare(int32_t start
,
3687 const UnicodeString
&srcText
,
3690 uint32_t options
) const
3692 if(srcText
.isBogus()) {
3693 return (int8_t)!isBogus(); // 0 if both are bogus, 1 otherwise
3695 srcText
.pinIndices(srcStart
, srcLength
);
3696 return doCaseCompare(start
, thisLength
, srcText
.getArrayStart(), srcStart
, srcLength
, options
);
3701 UnicodeString::caseCompare(const UnicodeString
&text
, uint32_t options
) const {
3702 return doCaseCompare(0, length(), text
, 0, text
.length(), options
);
3706 UnicodeString::caseCompare(int32_t start
,
3708 const UnicodeString
&srcText
,
3709 uint32_t options
) const {
3710 return doCaseCompare(start
, _length
, srcText
, 0, srcText
.length(), options
);
3714 UnicodeString::caseCompare(const UChar
*srcChars
,
3716 uint32_t options
) const {
3717 return doCaseCompare(0, length(), srcChars
, 0, srcLength
, options
);
3721 UnicodeString::caseCompare(int32_t start
,
3723 const UnicodeString
&srcText
,
3726 uint32_t options
) const {
3727 return doCaseCompare(start
, _length
, srcText
, srcStart
, srcLength
, options
);
3731 UnicodeString::caseCompare(int32_t start
,
3733 const UChar
*srcChars
,
3734 uint32_t options
) const {
3735 return doCaseCompare(start
, _length
, srcChars
, 0, _length
, options
);
3739 UnicodeString::caseCompare(int32_t start
,
3741 const UChar
*srcChars
,
3744 uint32_t options
) const {
3745 return doCaseCompare(start
, _length
, srcChars
, srcStart
, srcLength
, options
);
3749 UnicodeString::caseCompareBetween(int32_t start
,
3751 const UnicodeString
&srcText
,
3754 uint32_t options
) const {
3755 return doCaseCompare(start
, limit
- start
, srcText
, srcStart
, srcLimit
- srcStart
, options
);
3759 UnicodeString::indexOf(const UnicodeString
& srcText
,
3763 int32_t _length
) const
3765 if(!srcText
.isBogus()) {
3766 srcText
.pinIndices(srcStart
, srcLength
);
3768 return indexOf(srcText
.getArrayStart(), srcStart
, srcLength
, start
, _length
);
3775 UnicodeString::indexOf(const UnicodeString
& text
) const
3776 { return indexOf(text
, 0, text
.length(), 0, length()); }
3779 UnicodeString::indexOf(const UnicodeString
& text
,
3780 int32_t start
) const {
3782 return indexOf(text
, 0, text
.length(), start
, length() - start
);
3786 UnicodeString::indexOf(const UnicodeString
& text
,
3788 int32_t _length
) const
3789 { return indexOf(text
, 0, text
.length(), start
, _length
); }
3792 UnicodeString::indexOf(const UChar
*srcChars
,
3794 int32_t start
) const {
3796 return indexOf(srcChars
, 0, srcLength
, start
, length() - start
);
3800 UnicodeString::indexOf(const UChar
*srcChars
,
3803 int32_t _length
) const
3804 { return indexOf(srcChars
, 0, srcLength
, start
, _length
); }
3807 UnicodeString::indexOf(UChar c
,
3809 int32_t _length
) const
3810 { return doIndexOf(c
, start
, _length
); }
3813 UnicodeString::indexOf(UChar32 c
,
3815 int32_t _length
) const
3816 { return doIndexOf(c
, start
, _length
); }
3819 UnicodeString::indexOf(UChar c
) const
3820 { return doIndexOf(c
, 0, length()); }
3823 UnicodeString::indexOf(UChar32 c
) const
3824 { return indexOf(c
, 0, length()); }
3827 UnicodeString::indexOf(UChar c
,
3828 int32_t start
) const {
3830 return doIndexOf(c
, start
, length() - start
);
3834 UnicodeString::indexOf(UChar32 c
,
3835 int32_t start
) const {
3837 return indexOf(c
, start
, length() - start
);
3841 UnicodeString::lastIndexOf(const UChar
*srcChars
,
3844 int32_t _length
) const
3845 { return lastIndexOf(srcChars
, 0, srcLength
, start
, _length
); }
3848 UnicodeString::lastIndexOf(const UChar
*srcChars
,
3850 int32_t start
) const {
3852 return lastIndexOf(srcChars
, 0, srcLength
, start
, length() - start
);
3856 UnicodeString::lastIndexOf(const UnicodeString
& srcText
,
3860 int32_t _length
) const
3862 if(!srcText
.isBogus()) {
3863 srcText
.pinIndices(srcStart
, srcLength
);
3865 return lastIndexOf(srcText
.getArrayStart(), srcStart
, srcLength
, start
, _length
);
3872 UnicodeString::lastIndexOf(const UnicodeString
& text
,
3874 int32_t _length
) const
3875 { return lastIndexOf(text
, 0, text
.length(), start
, _length
); }
3878 UnicodeString::lastIndexOf(const UnicodeString
& text
,
3879 int32_t start
) const {
3881 return lastIndexOf(text
, 0, text
.length(), start
, length() - start
);
3885 UnicodeString::lastIndexOf(const UnicodeString
& text
) const
3886 { return lastIndexOf(text
, 0, text
.length(), 0, length()); }
3889 UnicodeString::lastIndexOf(UChar c
,
3891 int32_t _length
) const
3892 { return doLastIndexOf(c
, start
, _length
); }
3895 UnicodeString::lastIndexOf(UChar32 c
,
3897 int32_t _length
) const {
3898 return doLastIndexOf(c
, start
, _length
);
3902 UnicodeString::lastIndexOf(UChar c
) const
3903 { return doLastIndexOf(c
, 0, length()); }
3906 UnicodeString::lastIndexOf(UChar32 c
) const {
3907 return lastIndexOf(c
, 0, length());
3911 UnicodeString::lastIndexOf(UChar c
,
3912 int32_t start
) const {
3914 return doLastIndexOf(c
, start
, length() - start
);
3918 UnicodeString::lastIndexOf(UChar32 c
,
3919 int32_t start
) const {
3921 return lastIndexOf(c
, start
, length() - start
);
3925 UnicodeString::startsWith(const UnicodeString
& text
) const
3926 { return compare(0, text
.length(), text
, 0, text
.length()) == 0; }
3929 UnicodeString::startsWith(const UnicodeString
& srcText
,
3931 int32_t srcLength
) const
3932 { return doCompare(0, srcLength
, srcText
, srcStart
, srcLength
) == 0; }
3935 UnicodeString::startsWith(const UChar
*srcChars
,
3936 int32_t srcLength
) const
3937 { return doCompare(0, srcLength
, srcChars
, 0, srcLength
) == 0; }
3940 UnicodeString::startsWith(const UChar
*srcChars
,
3942 int32_t srcLength
) const
3943 { return doCompare(0, srcLength
, srcChars
, srcStart
, srcLength
) == 0;}
3946 UnicodeString::endsWith(const UnicodeString
& text
) const
3947 { return doCompare(length() - text
.length(), text
.length(),
3948 text
, 0, text
.length()) == 0; }
3951 UnicodeString::endsWith(const UnicodeString
& srcText
,
3953 int32_t srcLength
) const {
3954 srcText
.pinIndices(srcStart
, srcLength
);
3955 return doCompare(length() - srcLength
, srcLength
,
3956 srcText
, srcStart
, srcLength
) == 0;
3960 UnicodeString::endsWith(const UChar
*srcChars
,
3961 int32_t srcLength
) const {
3963 srcLength
= u_strlen(srcChars
);
3965 return doCompare(length() - srcLength
, srcLength
,
3966 srcChars
, 0, srcLength
) == 0;
3970 UnicodeString::endsWith(const UChar
*srcChars
,
3972 int32_t srcLength
) const {
3974 srcLength
= u_strlen(srcChars
+ srcStart
);
3976 return doCompare(length() - srcLength
, srcLength
,
3977 srcChars
, srcStart
, srcLength
) == 0;
3980 //========================================
3982 //========================================
3983 inline UnicodeString
&
3984 UnicodeString::replace(int32_t start
,
3986 const UnicodeString
& srcText
)
3987 { return doReplace(start
, _length
, srcText
, 0, srcText
.length()); }
3989 inline UnicodeString
&
3990 UnicodeString::replace(int32_t start
,
3992 const UnicodeString
& srcText
,
3995 { return doReplace(start
, _length
, srcText
, srcStart
, srcLength
); }
3997 inline UnicodeString
&
3998 UnicodeString::replace(int32_t start
,
4000 const UChar
*srcChars
,
4002 { return doReplace(start
, _length
, srcChars
, 0, srcLength
); }
4004 inline UnicodeString
&
4005 UnicodeString::replace(int32_t start
,
4007 const UChar
*srcChars
,
4010 { return doReplace(start
, _length
, srcChars
, srcStart
, srcLength
); }
4012 inline UnicodeString
&
4013 UnicodeString::replace(int32_t start
,
4016 { return doReplace(start
, _length
, &srcChar
, 0, 1); }
4018 inline UnicodeString
&
4019 UnicodeString::replace(int32_t start
,
4022 UChar buffer
[U16_MAX_LENGTH
];
4024 UBool isError
= FALSE
;
4025 U16_APPEND(buffer
, count
, U16_MAX_LENGTH
, srcChar
, isError
);
4026 return doReplace(start
, _length
, buffer
, 0, count
);
4029 inline UnicodeString
&
4030 UnicodeString::replaceBetween(int32_t start
,
4032 const UnicodeString
& srcText
)
4033 { return doReplace(start
, limit
- start
, srcText
, 0, srcText
.length()); }
4035 inline UnicodeString
&
4036 UnicodeString::replaceBetween(int32_t start
,
4038 const UnicodeString
& srcText
,
4041 { return doReplace(start
, limit
- start
, srcText
, srcStart
, srcLimit
- srcStart
); }
4043 inline UnicodeString
&
4044 UnicodeString::findAndReplace(const UnicodeString
& oldText
,
4045 const UnicodeString
& newText
)
4046 { return findAndReplace(0, length(), oldText
, 0, oldText
.length(),
4047 newText
, 0, newText
.length()); }
4049 inline UnicodeString
&
4050 UnicodeString::findAndReplace(int32_t start
,
4052 const UnicodeString
& oldText
,
4053 const UnicodeString
& newText
)
4054 { return findAndReplace(start
, _length
, oldText
, 0, oldText
.length(),
4055 newText
, 0, newText
.length()); }
4057 // ============================
4059 // ============================
4061 UnicodeString::doExtract(int32_t start
,
4063 UnicodeString
& target
) const
4064 { target
.replace(0, target
.length(), *this, start
, _length
); }
4067 UnicodeString::extract(int32_t start
,
4070 int32_t targetStart
) const
4071 { doExtract(start
, _length
, target
, targetStart
); }
4074 UnicodeString::extract(int32_t start
,
4076 UnicodeString
& target
) const
4077 { doExtract(start
, _length
, target
); }
4079 #if !UCONFIG_NO_CONVERSION
4082 UnicodeString::extract(int32_t start
,
4085 const char *codepage
) const
4088 // This dstSize value will be checked explicitly
4089 #if defined(__GNUC__)
4090 // Ticket #7039: Clip length to the maximum valid length to the end of addressable memory given the starting address
4091 // This is only an issue when using GCC and certain optimizations are turned on.
4092 return extract(start
, _length
, dst
, dst
!=0 ? ((dst
>= (char*)((size_t)-1) - UINT32_MAX
) ? (((char*)UINT32_MAX
) - dst
) : UINT32_MAX
) : 0, codepage
);
4094 return extract(start
, _length
, dst
, dst
!=0 ? 0xffffffff : 0, codepage
);
4101 UnicodeString::extractBetween(int32_t start
,
4104 int32_t dstStart
) const {
4107 doExtract(start
, limit
- start
, dst
, dstStart
);
4110 inline UnicodeString
4111 UnicodeString::tempSubStringBetween(int32_t start
, int32_t limit
) const {
4112 return tempSubString(start
, limit
- start
);
4116 UnicodeString::doCharAt(int32_t offset
) const
4118 if((uint32_t)offset
< (uint32_t)length()) {
4119 return getArrayStart()[offset
];
4121 return kInvalidUChar
;
4126 UnicodeString::charAt(int32_t offset
) const
4127 { return doCharAt(offset
); }
4130 UnicodeString::operator[] (int32_t offset
) const
4131 { return doCharAt(offset
); }
4134 UnicodeString::char32At(int32_t offset
) const
4136 int32_t len
= length();
4137 if((uint32_t)offset
< (uint32_t)len
) {
4138 const UChar
*array
= getArrayStart();
4140 U16_GET(array
, 0, offset
, len
, c
);
4143 return kInvalidUChar
;
4148 UnicodeString::getChar32Start(int32_t offset
) const {
4149 if((uint32_t)offset
< (uint32_t)length()) {
4150 const UChar
*array
= getArrayStart();
4151 U16_SET_CP_START(array
, 0, offset
);
4159 UnicodeString::getChar32Limit(int32_t offset
) const {
4160 int32_t len
= length();
4161 if((uint32_t)offset
< (uint32_t)len
) {
4162 const UChar
*array
= getArrayStart();
4163 U16_SET_CP_LIMIT(array
, 0, offset
, len
);
4171 UnicodeString::isEmpty() const {
4172 return fShortLength
== 0;
4175 //========================================
4176 // Write implementation methods
4177 //========================================
4179 UnicodeString::setLength(int32_t len
) {
4181 fShortLength
= (int8_t)len
;
4183 fShortLength
= (int8_t)-1;
4184 fUnion
.fFields
.fLength
= len
;
4189 UnicodeString::setToEmpty() {
4191 fFlags
= kShortString
;
4195 UnicodeString::setArray(UChar
*array
, int32_t len
, int32_t capacity
) {
4197 fUnion
.fFields
.fArray
= array
;
4198 fUnion
.fFields
.fCapacity
= capacity
;
4201 inline const UChar
*
4202 UnicodeString::getTerminatedBuffer() {
4206 UChar
*array
= getArrayStart();
4207 int32_t len
= length();
4208 if(len
< getCapacity() && ((fFlags
&kRefCounted
) == 0 || refCount() == 1)) {
4210 * kRefCounted: Do not write the NUL if the buffer is shared.
4211 * That is mostly safe, except when the length of one copy was modified
4212 * without copy-on-write, e.g., via truncate(newLength) or remove(void).
4213 * Then the NUL would be written into the middle of another copy's string.
4215 if(!(fFlags
&kBufferIsReadonly
)) {
4217 * We must not write to a readonly buffer, but it is known to be
4218 * NUL-terminated if len<capacity.
4219 * A shared, allocated buffer (refCount()>1) must not have its contents
4220 * modified, but the NUL at [len] is beyond the string contents,
4221 * and multiple string objects and threads writing the same NUL into the
4222 * same location is harmless.
4223 * In all other cases, the buffer is fully writable and it is anyway safe
4226 * Note: An earlier version of this code tested whether there is a NUL
4227 * at [len] already, but, while safe, it generated lots of warnings from
4228 * tools like valgrind and Purify.
4233 } else if(cloneArrayIfNeeded(len
+1)) {
4234 array
= getArrayStart();
4243 inline UnicodeString
&
4244 UnicodeString::operator= (UChar ch
)
4245 { return doReplace(0, length(), &ch
, 0, 1); }
4247 inline UnicodeString
&
4248 UnicodeString::operator= (UChar32 ch
)
4249 { return replace(0, length(), ch
); }
4251 inline UnicodeString
&
4252 UnicodeString::setTo(const UnicodeString
& srcText
,
4257 return doReplace(0, length(), srcText
, srcStart
, srcLength
);
4260 inline UnicodeString
&
4261 UnicodeString::setTo(const UnicodeString
& srcText
,
4265 srcText
.pinIndex(srcStart
);
4266 return doReplace(0, length(), srcText
, srcStart
, srcText
.length() - srcStart
);
4269 inline UnicodeString
&
4270 UnicodeString::setTo(const UnicodeString
& srcText
)
4273 return doReplace(0, length(), srcText
, 0, srcText
.length());
4276 inline UnicodeString
&
4277 UnicodeString::setTo(const UChar
*srcChars
,
4281 return doReplace(0, length(), srcChars
, 0, srcLength
);
4284 inline UnicodeString
&
4285 UnicodeString::setTo(UChar srcChar
)
4288 return doReplace(0, length(), &srcChar
, 0, 1);
4291 inline UnicodeString
&
4292 UnicodeString::setTo(UChar32 srcChar
)
4295 return replace(0, length(), srcChar
);
4298 inline UnicodeString
&
4299 UnicodeString::append(const UnicodeString
& srcText
,
4302 { return doReplace(length(), 0, srcText
, srcStart
, srcLength
); }
4304 inline UnicodeString
&
4305 UnicodeString::append(const UnicodeString
& srcText
)
4306 { return doReplace(length(), 0, srcText
, 0, srcText
.length()); }
4308 inline UnicodeString
&
4309 UnicodeString::append(const UChar
*srcChars
,
4312 { return doReplace(length(), 0, srcChars
, srcStart
, srcLength
); }
4314 inline UnicodeString
&
4315 UnicodeString::append(const UChar
*srcChars
,
4317 { return doReplace(length(), 0, srcChars
, 0, srcLength
); }
4319 inline UnicodeString
&
4320 UnicodeString::append(UChar srcChar
)
4321 { return doReplace(length(), 0, &srcChar
, 0, 1); }
4323 inline UnicodeString
&
4324 UnicodeString::append(UChar32 srcChar
) {
4325 UChar buffer
[U16_MAX_LENGTH
];
4326 int32_t _length
= 0;
4327 UBool isError
= FALSE
;
4328 U16_APPEND(buffer
, _length
, U16_MAX_LENGTH
, srcChar
, isError
);
4329 return doReplace(length(), 0, buffer
, 0, _length
);
4332 inline UnicodeString
&
4333 UnicodeString::operator+= (UChar ch
)
4334 { return doReplace(length(), 0, &ch
, 0, 1); }
4336 inline UnicodeString
&
4337 UnicodeString::operator+= (UChar32 ch
) {
4341 inline UnicodeString
&
4342 UnicodeString::operator+= (const UnicodeString
& srcText
)
4343 { return doReplace(length(), 0, srcText
, 0, srcText
.length()); }
4345 inline UnicodeString
&
4346 UnicodeString::insert(int32_t start
,
4347 const UnicodeString
& srcText
,
4350 { return doReplace(start
, 0, srcText
, srcStart
, srcLength
); }
4352 inline UnicodeString
&
4353 UnicodeString::insert(int32_t start
,
4354 const UnicodeString
& srcText
)
4355 { return doReplace(start
, 0, srcText
, 0, srcText
.length()); }
4357 inline UnicodeString
&
4358 UnicodeString::insert(int32_t start
,
4359 const UChar
*srcChars
,
4362 { return doReplace(start
, 0, srcChars
, srcStart
, srcLength
); }
4364 inline UnicodeString
&
4365 UnicodeString::insert(int32_t start
,
4366 const UChar
*srcChars
,
4368 { return doReplace(start
, 0, srcChars
, 0, srcLength
); }
4370 inline UnicodeString
&
4371 UnicodeString::insert(int32_t start
,
4373 { return doReplace(start
, 0, &srcChar
, 0, 1); }
4375 inline UnicodeString
&
4376 UnicodeString::insert(int32_t start
,
4378 { return replace(start
, 0, srcChar
); }
4381 inline UnicodeString
&
4382 UnicodeString::remove()
4384 // remove() of a bogus string makes the string empty and non-bogus
4385 // we also un-alias a read-only alias to deal with NUL-termination
4386 // issues with getTerminatedBuffer()
4387 if(fFlags
& (kIsBogus
|kBufferIsReadonly
)) {
4395 inline UnicodeString
&
4396 UnicodeString::remove(int32_t start
,
4399 if(start
<= 0 && _length
== INT32_MAX
) {
4400 // remove(guaranteed everything) of a bogus string makes the string empty and non-bogus
4403 return doReplace(start
, _length
, NULL
, 0, 0);
4406 inline UnicodeString
&
4407 UnicodeString::removeBetween(int32_t start
,
4409 { return doReplace(start
, limit
- start
, NULL
, 0, 0); }
4411 inline UnicodeString
&
4412 UnicodeString::retainBetween(int32_t start
, int32_t limit
) {
4414 return doReplace(0, start
, NULL
, 0, 0);
4418 UnicodeString::truncate(int32_t targetLength
)
4420 if(isBogus() && targetLength
== 0) {
4421 // truncate(0) of a bogus string makes the string empty and non-bogus
4424 } else if((uint32_t)targetLength
< (uint32_t)length()) {
4425 setLength(targetLength
);
4426 if(fFlags
&kBufferIsReadonly
) {
4427 fUnion
.fFields
.fCapacity
= targetLength
; // not NUL-terminated any more
4435 inline UnicodeString
&
4436 UnicodeString::reverse()
4437 { return doReverse(0, length()); }
4439 inline UnicodeString
&
4440 UnicodeString::reverse(int32_t start
,
4442 { return doReverse(start
, _length
); }