33#if U_SHOW_CPLUSPLUS_API
56#if !UCONFIG_NO_BREAK_ITERATION
75 char16_t *dest, int32_t destCapacity,
76 const char16_t *src, int32_t srcLength,
83class StringCharacterIterator;
84class UnicodeStringAppendable;
98#define US_INV icu::UnicodeString::kInvariant
120#if !U_CHAR16_IS_TYPEDEF
121# define UNICODE_STRING(cs, _length) icu::UnicodeString(true, u ## cs, _length)
123# define UNICODE_STRING(cs, _length) icu::UnicodeString(true, (const char16_t*)u ## cs, _length)
135#define UNICODE_STRING_SIMPLE(cs) UNICODE_STRING(cs, -1)
144#ifndef UNISTR_FROM_CHAR_EXPLICIT
145# if defined(U_COMBINED_IMPLEMENTATION) || defined(U_COMMON_IMPLEMENTATION) || defined(U_I18N_IMPLEMENTATION) || defined(U_IO_IMPLEMENTATION)
147# define UNISTR_FROM_CHAR_EXPLICIT explicit
150# define UNISTR_FROM_CHAR_EXPLICIT
164#ifndef UNISTR_FROM_STRING_EXPLICIT
165# if defined(U_COMBINED_IMPLEMENTATION) || defined(U_COMMON_IMPLEMENTATION) || defined(U_I18N_IMPLEMENTATION) || defined(U_IO_IMPLEMENTATION)
167# define UNISTR_FROM_STRING_EXPLICIT explicit
170# define UNISTR_FROM_STRING_EXPLICIT
207#ifndef UNISTR_OBJECT_SIZE
208# define UNISTR_OBJECT_SIZE 64
354 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
356 std::u16string_view
sv(internal::toU16StringView(text));
358 return !isBogus() && (len =
length()) ==
sv.length() && doEquals(
sv.data(), len);
387 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
1127 inline int32_t indexOf(
char16_t c)
const;
1147 inline int32_t indexOf(
char16_t c,
1172 inline int32_t indexOf(
char16_t c,
1310 inline int32_t lastIndexOf(
char16_t c)
const;
1330 inline int32_t lastIndexOf(
char16_t c,
1355 inline int32_t lastIndexOf(
char16_t c,
1513 inline void extract(
int32_t start,
1552 inline void extract(
int32_t start,
1611#if U_CHARSET_IS_UTF8 || !UCONFIG_NO_CONVERSION
1639#if !UCONFIG_NO_CONVERSION
1669 const char*
codepage =
nullptr)
const;
1782 template<
typename StringClass>
1789#ifndef U_HIDE_DRAFT_API
1801 template<
typename StringClass>
1886 inline UBool isEmpty()
const;
1897 inline int32_t getCapacity()
const;
1906 inline int32_t hashCode()
const;
1920 inline UBool isBogus()
const;
1922#ifndef U_HIDE_DRAFT_API
1928 using unspecified_iterator = std::u16string_view::const_iterator;
1929 using unspecified_reverse_iterator = std::u16string_view::const_reverse_iterator;
1937 unspecified_iterator
begin()
const {
return std::u16string_view(*this).begin(); }
1943 unspecified_iterator
end()
const {
return std::u16string_view(*this).end(); }
1949 unspecified_reverse_iterator
rbegin()
const {
return std::u16string_view(*this).rbegin(); }
1955 unspecified_reverse_iterator
rend()
const {
return std::u16string_view(*this).rend(); }
2021 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
2024 return doReplace(0,
length(), internal::toU16StringView(
src));
2286 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
2288 return doAppend(internal::toU16StringView(
src));
2357 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
2359 return doAppend(internal::toU16StringView(
src));
2378#ifndef U_HIDE_DRAFT_API
2849#if !UCONFIG_NO_BREAK_ITERATION
3058 inline const char16_t *getBuffer()
const;
3101 inline operator std::u16string_view()
const {
3102 return {getBuffer(),
static_cast<std::u16string_view::size_type
>(
length())};
3105#if U_SIZEOF_WCHAR_T==2 || defined(U_IN_DOXYGEN)
3115 inline operator std::wstring_view()
const {
3116 const char16_t *p = getBuffer();
3117#ifdef U_ALIASING_BARRIER
3120 return {
reinterpret_cast<const wchar_t *
>(p), (std::wstring_view::size_type)
length() };
3168#ifdef U_HIDE_DRAFT_API
3192#if !U_CHAR16_IS_TYPEDEF && \
3193 (defined(U_HIDE_DRAFT_API) || (defined(_LIBCPP_VERSION) && _LIBCPP_VERSION >= 180000))
3217#if defined(U_HIDE_DRAFT_API) && (U_SIZEOF_WCHAR_T==2 || defined(U_IN_DOXYGEN))
3239 UnicodeString(ConstChar16Ptr(text), -1) {}
3273#if !U_CHAR16_IS_TYPEDEF
3294#if U_SIZEOF_WCHAR_T==2 || defined(U_IN_DOXYGEN)
3337 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
3339 fUnion.fFields.fLengthAndFlags = kShortString;
3340 doAppend(internal::toU16StringViewNullable(text));
3397#if !U_CHAR16_IS_TYPEDEF
3410#if U_SIZEOF_WCHAR_T==2 || defined(U_IN_DOXYGEN)
3434#if U_CHARSET_IS_UTF8 || !UCONFIG_NO_CONVERSION
3473#if !UCONFIG_NO_CONVERSION
3661 template<
typename S,
typename = std::enable_if_t<ConvertibleToU16StringView<S>>>
3663 return readOnlyAliasFromU16StringView(internal::toU16StringView(text));
3686 return readOnlyAliasFromUnicodeString(text);
3816 static UnicodeString readOnlyAliasFromU16StringView(std::u16string_view text);
3828 char *target,
int32_t capacity)
const;
3835 return doEquals(text.getArrayStart(), len);
3837 UBool doEquals(
const char16_t *text,
int32_t len)
const;
3840 doEqualsSubstring(
int32_t start,
3866 doCompareCodePointOrder(
int32_t start,
3902 int32_t doLastIndexOf(
char16_t c,
3915 inline void doExtract(
int32_t start,
3919 inline char16_t doCharAt(
int32_t offset)
const;
3946 inline char16_t* getArrayStart();
3947 inline const char16_t* getArrayStart()
const;
3949 inline UBool hasShortLength()
const;
3950 inline int32_t getShortLength()
const;
3954 inline UBool isWritable()
const;
3957 inline UBool isBufferWritable()
const;
3960 inline void setZeroLength();
3961 inline void setShortLength(
int32_t len);
3962 inline void setLength(
int32_t len);
3963 inline void setToEmpty();
3964 inline void setArray(
char16_t *array,
int32_t len,
int32_t capacity);
3974 void releaseArray();
3986 inline void pinIndex(
int32_t& start)
const;
3987 inline void pinIndices(
int32_t& start,
3990#if !UCONFIG_NO_CONVERSION
4066 kInvalidUChar=0xffff,
4072 kUsingStackBuffer=2,
4074 kBufferIsReadonly=8,
4077 kAllStorageFlags=0x1f,
4080 kLength1=1<<kLengthShift,
4081 kMaxShortLength=0x3ff,
4082 kLengthIsLarge=0xffe0,
4085 kShortString=kUsingStackBuffer,
4086 kLongString=kRefCounted,
4087 kReadonlyAlias=kBufferIsReadonly,
4091 friend class UnicodeStringAppendable;
4093 union StackBufferOrFields;
4094 friend union StackBufferOrFields;
4137 union StackBufferOrFields {
4141 int16_t fLengthAndFlags;
4142 char16_t fBuffer[US_STACKBUF_SIZE];
4145 int16_t fLengthAndFlags;
4177 typename US,
typename S,
4178 typename = std::enable_if_t<ConvertibleToU16StringView<S> && std::is_same_v<US, UnicodeString>>>
4183#ifndef U_FORCE_HIDE_INTERNAL_API
4198UnicodeString::pinIndex(
int32_t& start)
const
4203 }
else if(start > length()) {
4209UnicodeString::pinIndices(int32_t& start,
4210 int32_t& _length)
const
4213 int32_t len = length();
4216 }
else if(start > len) {
4221 }
else if(_length > (len - start)) {
4222 _length = (len - start);
4227UnicodeString::getArrayStart() {
4228 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4229 fUnion.fStackFields.fBuffer : fUnion.fFields.fArray;
4232inline const char16_t*
4233UnicodeString::getArrayStart()
const {
4234 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4235 fUnion.fStackFields.fBuffer : fUnion.fFields.fArray;
4243UnicodeString::UnicodeString() {
4244 fUnion.fStackFields.fLengthAndFlags=kShortString;
4247inline UnicodeString::UnicodeString(
const std::nullptr_t ) {
4248 fUnion.fStackFields.fLengthAndFlags=kShortString;
4251inline UnicodeString::UnicodeString(
const std::nullptr_t ,
int32_t ) {
4252 fUnion.fStackFields.fLengthAndFlags=kShortString;
4256 fUnion.fStackFields.fLengthAndFlags=kShortString;
4263UnicodeString::hasShortLength()
const {
4264 return fUnion.fFields.fLengthAndFlags>=0;
4268UnicodeString::getShortLength()
const {
4271 return fUnion.fFields.fLengthAndFlags>>kLengthShift;
4275UnicodeString::length()
const {
4276 return hasShortLength() ? getShortLength() : fUnion.fFields.fLength;
4280UnicodeString::getCapacity()
const {
4281 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4282 US_STACKBUF_SIZE : fUnion.fFields.fCapacity;
4286UnicodeString::hashCode()
const
4287{
return doHashCode(); }
4290UnicodeString::isBogus()
const
4291{
return fUnion.fFields.fLengthAndFlags & kIsBogus; }
4294UnicodeString::isWritable()
const
4295{
return !(fUnion.fFields.fLengthAndFlags & (kOpenGetBuffer | kIsBogus)); }
4298UnicodeString::isBufferWritable()
const
4301 !(fUnion.fFields.fLengthAndFlags&(kOpenGetBuffer|kIsBogus|kBufferIsReadonly)) &&
4302 (!(fUnion.fFields.fLengthAndFlags&kRefCounted) || refCount()==1);
4305inline const char16_t *
4306UnicodeString::getBuffer()
const {
4307 if(fUnion.fFields.fLengthAndFlags&(kIsBogus|kOpenGetBuffer)) {
4309 }
else if(fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) {
4310 return fUnion.fStackFields.fBuffer;
4312 return fUnion.fFields.fArray;
4320UnicodeString::doCompare(
int32_t start,
4327 return static_cast<int8_t>(!isBogus());
4329 srcText.pinIndices(srcStart, srcLength);
4330 return doCompare(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4335UnicodeString::doEqualsSubstring(int32_t start,
4337 const UnicodeString& srcText,
4339 int32_t srcLength)
const
4341 if(srcText.isBogus()) {
4344 srcText.pinIndices(srcStart, srcLength);
4345 return !isBogus() && doEqualsSubstring(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4356 return !text.
isBogus() && len == textLength && doEquals(text, len);
4362{
return (!
operator==(text)); }
4366{
return doCompare(0, length(), text, 0, text.
length()) == 1; }
4370{
return doCompare(0, length(), text, 0, text.
length()) == -1; }
4374{
return doCompare(0, length(), text, 0, text.
length()) != -1; }
4378{
return doCompare(0, length(), text, 0, text.
length()) != 1; }
4382{
return doCompare(0, length(), text, 0, text.
length()); }
4423{
return doCompare(start, limit - start,
4427UnicodeString::doCompareCodePointOrder(
int32_t start,
4434 return static_cast<int8_t>(!isBogus());
4436 srcText.pinIndices(srcStart, srcLength);
4437 return doCompareCodePointOrder(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4443{
return doCompareCodePointOrder(0, length(), text, 0, text.
length()); }
4446UnicodeString::compareCodePointOrder(
int32_t start,
4457UnicodeString::compareCodePointOrder(
int32_t start,
4465UnicodeString::compareCodePointOrder(
int32_t start,
4471UnicodeString::compareCodePointOrder(
int32_t start,
4479UnicodeString::compareCodePointOrderBetween(
int32_t start,
4484{
return doCompareCodePointOrder(start, limit - start,
4488UnicodeString::doCaseCompare(
int32_t start,
4496 return static_cast<int8_t>(!isBogus());
4498 srcText.pinIndices(srcStart, srcLength);
4499 return doCaseCompare(start, thisLength, srcText.getArrayStart(), srcStart, srcLength, options);
4505 return doCaseCompare(0, length(), text, 0, text.
length(), options);
4579{
return indexOf(text, 0, text.
length(), 0, length()); }
4585 return indexOf(text, 0, text.
length(), start, length() - start);
4610UnicodeString::indexOf(
char16_t c,
4613{
return doIndexOf(c, start,
_length); }
4619{
return doIndexOf(c, start,
_length); }
4622UnicodeString::indexOf(
char16_t c)
const
4623{
return doIndexOf(c, 0, length()); }
4627{
return indexOf(c, 0, length()); }
4630UnicodeString::indexOf(
char16_t c,
4633 return doIndexOf(c, start, length() - start);
4640 return indexOf(c, start, length() - start);
4678{
return lastIndexOf(text, 0, text.
length(), start,
_length); }
4684 return lastIndexOf(text, 0, text.
length(), start, length() - start);
4689{
return lastIndexOf(text, 0, text.
length(), 0, length()); }
4692UnicodeString::lastIndexOf(
char16_t c,
4695{
return doLastIndexOf(c, start,
_length); }
4701 return doLastIndexOf(c, start,
_length);
4705UnicodeString::lastIndexOf(
char16_t c)
const
4706{
return doLastIndexOf(c, 0, length()); }
4710 return lastIndexOf(c, 0, length());
4714UnicodeString::lastIndexOf(
char16_t c,
4717 return doLastIndexOf(c, start, length() - start);
4724 return lastIndexOf(c, start, length() - start);
4729{
return doEqualsSubstring(0, text.
length(), text, 0, text.
length()); }
4755{
return doEqualsSubstring(length() - text.
length(), text.
length(),
4756 text, 0, text.
length()); }
4829{
return doReplace(start, limit - start,
srcText, 0,
srcText.length()); }
4842{
return findAndReplace(0, length(),
oldText, 0,
oldText.length(),
4857UnicodeString::doExtract(
int32_t start,
4873{ doExtract(start,
_length, target); }
4875#if !UCONFIG_NO_CONVERSION
4902 return tempSubString(start, limit - start);
4906UnicodeString::doCharAt(
int32_t offset)
const
4909 return getArrayStart()[offset];
4911 return kInvalidUChar;
4917{
return doCharAt(offset); }
4921{
return doCharAt(offset); }
4924UnicodeString::isEmpty()
const {
4926 return (fUnion.fFields.fLengthAndFlags>>kLengthShift) == 0;
4933UnicodeString::setZeroLength() {
4934 fUnion.fFields.fLengthAndFlags &= kAllStorageFlags;
4938UnicodeString::setShortLength(int32_t len) {
4940 fUnion.fFields.fLengthAndFlags =
4941 static_cast<int16_t
>((fUnion.fFields.fLengthAndFlags & kAllStorageFlags) | (len << kLengthShift));
4945UnicodeString::setLength(int32_t len) {
4946 if(len <= kMaxShortLength) {
4947 setShortLength(len);
4949 fUnion.fFields.fLengthAndFlags |= kLengthIsLarge;
4950 fUnion.fFields.fLength = len;
4955UnicodeString::setToEmpty() {
4956 fUnion.fFields.fLengthAndFlags = kShortString;
4960UnicodeString::setArray(
char16_t *array, int32_t len, int32_t capacity) {
4962 fUnion.fFields.fArray = array;
4963 fUnion.fFields.fCapacity = capacity;
4966inline UnicodeString&
4967UnicodeString::operator= (
char16_t ch)
4968{
return doReplace(0, length(), &
ch, 0, 1); }
4972{
return replace(0, length(),
ch); }
5010 return doReplace(0, length(), &
srcChar, 0, 1);
5017 return replace(0, length(),
srcChar);
5043{
return doAppend(&
srcChar, 0, 1); }
5046UnicodeString::operator+= (
char16_t ch)
5047{
return doAppend(&
ch, 0, 1); }
5086{
return doReplace(start, 0, &
srcChar, 0, 1); }
5091{
return replace(start, 0,
srcChar); }
5095UnicodeString::remove()
5114 return doReplace(start,
_length,
nullptr, 0, 0);
5120{
return doReplace(start, limit - start,
nullptr, 0, 0); }
5125 return doReplace(0, start,
nullptr, 0, 0);
5144UnicodeString::reverse()
5145{
return doReverse(0, length()); }
5150{
return doReverse(start,
_length); }
C++ API: Interface for writing bytes, and implementation classes.
C++ API: char16_t pointer wrappers with implicit conversion from bit-compatible raw pointer types.
#define U_ALIASING_BARRIER(ptr)
Barrier for pointer anti-aliasing optimizations even across function boundaries.
The BreakIterator class implements methods for finding the location of boundaries in text.
A ByteSink can be filled with bytes.
char16_t * wrapper with implicit conversion from distinct but bit-compatible pointer types.
const char16_t * wrapper with implicit conversion from distinct but bit-compatible pointer types.
Records lengths of string edits but not replacement text.
"Smart pointer" base class; do not use directly: use LocalPointer etc.
A Locale object represents a specific geographical, political, or cultural region.
Replaceable is an abstract base class representing a string of characters that supports the replaceme...
virtual void extractBetween(int32_t start, int32_t limit, UnicodeString &target) const =0
Copies characters in the range [start, limit) into the UnicodeString target.
char16_t charAt(int32_t offset) const
Returns the 16-bit code unit at the given offset into the text.
int32_t length() const
Returns the number of 16-bit code units in the text.
A string-like object that points to a sized piece of memory.
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
int32_t indexOf(const char16_t *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const
Locate in this the first occurrence in the range [start, start + length) of the characters in srcChar...
UnicodeString(const UnicodeString &that)
Copy constructor.
void push_back(char16_t c)
Appends the code unit c to the UnicodeString object.
void swap(UnicodeString &other) noexcept
Swap strings.
virtual char16_t getCharAt(int32_t offset) const override
The change in Replaceable to use virtual getCharAt() allows UnicodeString::charAt() to be inline agai...
bool operator==(const S &text) const
Equality operator.
virtual int32_t getLength() const override
Implement Replaceable::getLength() (see jitterbug 1027).
UnicodeString & setTo(char16_t *buffer, int32_t buffLength, int32_t buffCapacity)
Aliasing setTo() function, analogous to the writable-aliasing char16_t* constructor.
UnicodeString & operator=(const S &src)
Assignment operator.
UnicodeString & operator=(UnicodeString &&src) noexcept
Move assignment operator; might leave src in bogus state.
UChar32 unescapeAt(int32_t &offset) const
Unescape a single escape sequence and return the represented character.
UnicodeString(const wchar_t *text, int32_t textLength)
wchar_t * constructor.
virtual void handleReplaceBetween(int32_t start, int32_t limit, const UnicodeString &text) override
Replace a substring of this object with the given text.
UBool hasMoreChar32Than(int32_t start, int32_t length, int32_t number) const
Check if the length char16_t code units of the string contain more Unicode code points than a certain...
UnicodeString(const UnicodeString &src, int32_t srcStart, int32_t srcLength)
'Substring' constructor from subrange of source string.
virtual ~UnicodeString()
Destructor.
UnicodeString(const char *codepageData, int32_t dataLength, const char *codepage)
char* constructor.
UnicodeString(const char *codepageData, const char *codepage)
char* constructor.
UnicodeString(UBool isTerminated, ConstChar16Ptr text, int32_t textLength)
Readonly-aliasing char16_t* constructor.
static UnicodeString readOnlyAlias(const UnicodeString &text)
Readonly-aliasing factory method.
UnicodeString & toTitle(BreakIterator *titleIter, const Locale &locale, uint32_t options)
Titlecase this string, with options.
UnicodeString & append(UChar32 srcChar)
Append the code point srcChar to the UnicodeString object.
EInvariant
Constant to be used in the UnicodeString(char *, int32_t, EInvariant) constructor which constructs a ...
bool operator!=(const S &text) const
Inequality operator.
UnicodeString unescape() const
Unescape a string of characters and return a string containing the result.
UnicodeString(const UnicodeString &src, int32_t srcStart)
'Substring' constructor from tail of source string.
int32_t getChar32Limit(int32_t offset) const
Adjust a random-access offset so that it points behind a Unicode character.
UnicodeString(char16_t *buffer, int32_t buffLength, int32_t buffCapacity)
Writable-aliasing char16_t* constructor.
UnicodeString & findAndReplace(int32_t start, int32_t length, const UnicodeString &oldText, int32_t oldStart, int32_t oldLength, const UnicodeString &newText, int32_t newStart, int32_t newLength)
Replace all occurrences of characters in oldText in the range [oldStart, oldStart + oldLength) with t...
UnicodeString(int32_t capacity, UChar32 c, int32_t count)
Construct a UnicodeString with capacity to hold capacity char16_ts.
UnicodeString & operator+=(const S &src)
Append operator.
int32_t extract(int32_t start, int32_t startLength, char *target, uint32_t targetLength, const char *codepage) const
Copy the characters in the range [start, start + length) into an array of characters in a specified c...
virtual void copy(int32_t start, int32_t limit, int32_t dest) override
Copy a substring of this object, retaining attribute (out-of-band) information.
virtual void extractBetween(int32_t start, int32_t limit, UnicodeString &target) const override
Copy the characters in the range [start, limit) into the UnicodeString target.
UnicodeString & replace(int32_t start, int32_t length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength)
Replace the characters in the range [start, start + length) with the characters in srcText in the ran...
UnicodeString & toTitle(BreakIterator *titleIter)
Titlecase this string, convenience function using the default locale.
UnicodeString & fastCopyFrom(const UnicodeString &src)
Almost the same as the assignment operator.
virtual UnicodeString * clone() const override
Clone this object, an instance of a subclass of Replaceable.
UBool padLeading(int32_t targetLength, char16_t padChar=0x0020)
Pad the start of this UnicodeString with the character padChar.
int32_t getChar32Start(int32_t offset) const
Adjust a random-access offset so that it points to the beginning of a Unicode character.
UnicodeString & append(const S &src)
Appends the characters in src which is, or which is implicitly convertible to, a std::u16string_view ...
UChar32 char32At(int32_t offset) const
Return the code point that contains the code unit at offset offset.
UnicodeString(const char *src, int32_t textLength, enum EInvariant inv)
Constructs a Unicode string from an invariant-character char * string.
UnicodeString tempSubString(int32_t start=0, int32_t length=INT32_MAX) const
Create a temporary substring for the specified range.
int32_t extract(Char16Ptr dest, int32_t destCapacity, UErrorCode &errorCode) const
Copy the contents of the string into dest.
int32_t length() const
Return the length of the UnicodeString object.
unspecified_reverse_iterator rend() const
virtual UChar32 getChar32At(int32_t offset) const override
The change in Replaceable to use virtual getChar32At() allows UnicodeString::char32At() to be inline ...
int32_t extract(int32_t start, int32_t startLength, char *target, uint32_t targetLength) const
Copy the characters in the range [start, start + length) into an array of characters in the platform'...
static UnicodeString fromUTF8(StringPiece utf8)
Create a UnicodeString from a UTF-8 string.
UNISTR_FROM_CHAR_EXPLICIT UnicodeString(char16_t ch)
Single char16_t (code unit) constructor.
int32_t lastIndexOf(const char16_t *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const
Locate in this the last occurrence in the range [start, start + length) of the characters in srcChars...
UnicodeString(wchar_t *buffer, int32_t buffLength, int32_t buffCapacity)
Writable-aliasing wchar_t * constructor.
void setToBogus()
Make this UnicodeString object invalid.
friend void swap(UnicodeString &s1, UnicodeString &s2) noexcept
Non-member UnicodeString swap function.
int32_t moveIndex32(int32_t index, int32_t delta) const
Move the code unit index along the string by delta code points.
static UnicodeString fromUTF32(const UChar32 *utf32, int32_t length)
Create a UnicodeString from a UTF-32 string.
UnicodeString & replace(int32_t start, int32_t length, UChar32 srcChar)
Replace the characters in the range [start, start + length) with the code point srcChar.
UNISTR_FROM_STRING_EXPLICIT UnicodeString(const S &text)
Constructor from text which is, or which is implicitly convertible to, a std::u16string_view or (if U...
int32_t countChar32(int32_t start=0, int32_t length=INT32_MAX) const
Count Unicode code points in the length char16_t code units of the string.
StringClass toUTF8String() const
Convert the UnicodeString to a UTF-8 string.
UNISTR_FROM_CHAR_EXPLICIT UnicodeString(UChar32 ch)
Single UChar32 (code point) constructor.
static UnicodeString readOnlyAlias(const S &text)
Readonly-aliasing factory method.
UnicodeString & trim()
Trims leading and trailing whitespace from this UnicodeString.
unspecified_iterator begin() const
UnicodeString & operator=(const UnicodeString &srcText)
Assignment operator.
UnicodeString & setTo(UBool isTerminated, ConstChar16Ptr text, int32_t textLength)
Aliasing setTo() function, analogous to the readonly-aliasing char16_t* constructor.
int32_t extract(char *dest, int32_t destCapacity, UConverter *cnv, UErrorCode &errorCode) const
Convert the UnicodeString into a codepage string using an existing UConverter.
StringClass & toUTF8String(StringClass &result) const
Convert the UnicodeString to UTF-8 and append the result to a standard string.
UnicodeString(UnicodeString &&src) noexcept
Move constructor; might leave src in bogus state.
UnicodeString & toUpper()
Convert the characters in this to UPPER CASE following the conventions of the default locale.
UnicodeString(const char16_t *text, int32_t textLength)
char16_t* constructor.
UnicodeString(const char *src, int32_t srcLength, UConverter *cnv, UErrorCode &errorCode)
char * / UConverter constructor.
UnicodeString(const char *codepageData, int32_t dataLength)
char* constructor.
static UClassID getStaticClassID()
ICU "poor man's RTTI", returns a UClassID for this class.
UnicodeString(uint16_t *buffer, int32_t buffLength, int32_t buffCapacity)
Writable-aliasing uint16_t * constructor.
int32_t toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const
Convert the UnicodeString to UTF-32.
UBool isBogus() const
Determine if this object contains a valid string.
UnicodeString & toLower(const Locale &locale)
Convert the characters in this to lower case following the conventions of a specific locale.
UnicodeString & toTitle(BreakIterator *titleIter, const Locale &locale)
Titlecase this string.
UnicodeString & foldCase(uint32_t options=0)
Case-folds the characters in this string.
const char16_t * getTerminatedBuffer()
Get a read-only pointer to the internal buffer, making sure that it is NUL-terminated.
UnicodeString(const uint16_t *text, int32_t textLength)
uint16_t * constructor.
unspecified_reverse_iterator rbegin() const
UnicodeString & toUpper(const Locale &locale)
Convert the characters in this to UPPER CASE following the conventions of a specific locale.
UnicodeString & setCharAt(int32_t offset, char16_t ch)
Set the character at the specified offset to the specified character.
virtual UClassID getDynamicClassID() const override
ICU "poor man's RTTI", returns a UClassID for the actual class.
int32_t extract(int32_t start, int32_t startLength, char *target, int32_t targetCapacity, enum EInvariant inv) const
Copy the characters in the range [start, start + startLength) into an array of characters.
char16_t * getBuffer(int32_t minCapacity)
Get a read/write pointer to the internal buffer.
UnicodeString & toLower()
Convert the characters in this to lower case following the conventions of the default locale.
UBool padTrailing(int32_t targetLength, char16_t padChar=0x0020)
Pad the end of this UnicodeString with the character padChar.
UNISTR_FROM_STRING_EXPLICIT UnicodeString(const char *codepageData)
char* constructor.
void releaseBuffer(int32_t newLength=-1)
Release a read/write buffer on a UnicodeString object with an "open" getBuffer(minCapacity).
void toUTF8(ByteSink &sink) const
Convert the UnicodeString to UTF-8 and write the result to a ByteSink.
unspecified_iterator end() const
virtual UBool hasMetaData() const override
Replaceable API.
U_CAPI int32_t u_strlen(const UChar *s)
U_COMMON_API UnicodeString unistr_internalConcat(const UnicodeString &s1, std::u16string_view s2)
U_COMMON_API UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
U_COMMON_API UnicodeString operator+(const UnicodeString &s1, const UnicodeString &s2)
Creates a new UnicodeString from the concatenation of two others.
C++ API: Replaceable String.
C++ API: Central ICU header for including the C++ standard <string> header and for related definition...
C++ API: StringPiece: Read-only byte string wrapper class.
struct UConverter UConverter
#define UCONFIG_NO_BREAK_ITERATION
This switch turns off break iteration.
int32_t UChar32
Define UChar32 as a type for single Unicode code points.
#define INT32_MAX
The largest value a 32 bit signed integer can hold.
int8_t UBool
The ICU boolean type, a signed-byte integer.
#define U_CAPI
This is used to declare a function as a public ICU C API.
char16_t UChar
The base type for UTF-16 code units and pointers.
#define U_SIZEOF_UCHAR
Number of bytes in a UChar (always 2).
#define UNISTR_FROM_CHAR_EXPLICIT
This can be defined to be empty or "explicit".
int32_t UStringCaseMapper(int32_t caseLocale, uint32_t options, icu::BreakIterator *iter, char16_t *dest, int32_t destCapacity, const char16_t *src, int32_t srcLength, icu::Edits *edits, UErrorCode &errorCode)
Internal string case mapping function type.
#define UNISTR_FROM_STRING_EXPLICIT
This can be defined to be empty or "explicit".
#define UNISTR_OBJECT_SIZE
Desired sizeof(UnicodeString) in bytes.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside.