4020 kMaxShortLength=0x3ff,
4021 kLengthIsLarge=0xffe0,
4024 kShortString=kUsingStackBuffer,
4025 kLongString=kRefCounted,
4026 kReadonlyAlias=kBufferIsReadonly,
4030 friend class UnicodeStringAppendable;
4032 union StackBufferOrFields;
4033 friend union StackBufferOrFields;
4076 union StackBufferOrFields {
4080 int16_t fLengthAndFlags;
4081 char16_t fBuffer[US_STACKBUF_SIZE];
4084 int16_t fLengthAndFlags;
4105 #ifndef U_HIDE_DRAFT_API
4116 template<
typename S,
typename = std::enable_if_t
>>
4122 #ifndef U_FORCE_HIDE_INTERNAL_API
4137 UnicodeString::pinIndex(int32_t& start)
const
4142 }
else if(start > length()) {
4148 UnicodeString::pinIndices(int32_t& start,
4149 int32_t& _length)
const
4152 int32_t len = length();
4155 }
else if(start > len) {
4160 }
else if(_length > (len - start)) {
4161 _length = (len - start);
4166 UnicodeString::getArrayStart() {
4167 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4168 fUnion.fStackFields.fBuffer : fUnion.fFields.fArray;
4171 inline const char16_t*
4172 UnicodeString::getArrayStart()
const {
4173 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4174 fUnion.fStackFields.fBuffer : fUnion.fFields.fArray;
4182 UnicodeString::UnicodeString() {
4183 fUnion.fStackFields.fLengthAndFlags=kShortString;
4186 inline UnicodeString::UnicodeString(
const std::nullptr_t ) {
4187 fUnion.fStackFields.fLengthAndFlags=kShortString;
4190 inline UnicodeString::UnicodeString(
const std::nullptr_t , int32_t ) {
4191 fUnion.fStackFields.fLengthAndFlags=kShortString;
4194 inline UnicodeString::UnicodeString(std::nullptr_t , int32_t , int32_t ) {
4195 fUnion.fStackFields.fLengthAndFlags=kShortString;
4202 UnicodeString::hasShortLength()
const {
4203 return fUnion.fFields.fLengthAndFlags>=0;
4207 UnicodeString::getShortLength()
const {
4210 return fUnion.fFields.fLengthAndFlags>>kLengthShift;
4214 UnicodeString::length()
const {
4215 return hasShortLength() ? getShortLength() : fUnion.fFields.fLength;
4219 UnicodeString::getCapacity()
const {
4220 return (fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) ?
4221 US_STACKBUF_SIZE : fUnion.fFields.fCapacity;
4225 UnicodeString::hashCode()
const
4226 {
return doHashCode(); }
4229 UnicodeString::isBogus()
const
4230 {
return fUnion.fFields.fLengthAndFlags & kIsBogus; }
4233 UnicodeString::isWritable()
const
4234 {
return !(fUnion.fFields.fLengthAndFlags & (kOpenGetBuffer | kIsBogus)); }
4237 UnicodeString::isBufferWritable()
const
4240 !(fUnion.fFields.fLengthAndFlags&(kOpenGetBuffer|kIsBogus|kBufferIsReadonly)) &&
4241 (!(fUnion.fFields.fLengthAndFlags&kRefCounted) || refCount()==1);
4244 inline const char16_t *
4245 UnicodeString::getBuffer()
const {
4246 if(fUnion.fFields.fLengthAndFlags&(kIsBogus|kOpenGetBuffer)) {
4248 }
else if(fUnion.fFields.fLengthAndFlags&kUsingStackBuffer) {
4249 return fUnion.fStackFields.fBuffer;
4251 return fUnion.fFields.fArray;
4259 UnicodeString::doCompare(int32_t start,
4263 int32_t srcLength)
const
4266 return static_cast<int8_t
>(!isBogus());
4268 srcText.pinIndices(srcStart, srcLength);
4269 return doCompare(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4274 UnicodeString::doEqualsSubstring(int32_t start,
4276 const UnicodeString& srcText,
4278 int32_t srcLength)
const
4280 if(srcText.isBogus()) {
4283 srcText.pinIndices(srcStart, srcLength);
4284 return !isBogus() && doEqualsSubstring(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4294 int32_t len = length(), textLength = text.
length();
4295 return !text.
isBogus() && len == textLength && doEquals(text, len);
4301 {
return (!
operator==(text)); }
4305 {
return doCompare(0, length(), text, 0, text.
length()) == 1; }
4309 {
return doCompare(0, length(), text, 0, text.
length()) == -1; }
4313 {
return doCompare(0, length(), text, 0, text.
length()) != -1; }
4317 {
return doCompare(0, length(), text, 0, text.
length()) != 1; }
4321 {
return doCompare(0, length(), text, 0, text.
length()); }
4324 UnicodeString::compare(int32_t start,
4327 {
return doCompare(start, _length, srcText, 0, srcText.
length()); }
4331 int32_t srcLength)
const
4332 {
return doCompare(0, length(), srcChars, 0, srcLength); }
4335 UnicodeString::compare(int32_t start,
4339 int32_t srcLength)
const
4340 {
return doCompare(start, _length, srcText, srcStart, srcLength); }
4343 UnicodeString::compare(int32_t start,
4345 const char16_t *srcChars)
const
4346 {
return doCompare(start, _length, srcChars, 0, _length); }
4349 UnicodeString::compare(int32_t start,
4351 const char16_t *srcChars,
4353 int32_t srcLength)
const
4354 {
return doCompare(start, _length, srcChars, srcStart, srcLength); }
4357 UnicodeString::compareBetween(int32_t start,
4361 int32_t srcLimit)
const
4362 {
return doCompare(start, limit - start,
4363 srcText, srcStart, srcLimit - srcStart); }
4366 UnicodeString::doCompareCodePointOrder(int32_t start,
4370 int32_t srcLength)
const
4373 return static_cast<int8_t
>(!isBogus());
4375 srcText.pinIndices(srcStart, srcLength);
4376 return doCompareCodePointOrder(start, thisLength, srcText.getArrayStart(), srcStart, srcLength);
4382 {
return doCompareCodePointOrder(0, length(), text, 0, text.
length()); }
4385 UnicodeString::compareCodePointOrder(int32_t start,
4388 {
return doCompareCodePointOrder(start, _length, srcText, 0, srcText.
length()); }
4392 int32_t srcLength)
const
4393 {
return doCompareCodePointOrder(0, length(), srcChars, 0, srcLength); }
4396 UnicodeString::compareCodePointOrder(int32_t start,
4400 int32_t srcLength)
const
4401 {
return doCompareCodePointOrder(start, _length, srcText, srcStart, srcLength); }
4404 UnicodeString::compareCodePointOrder(int32_t start,
4406 const char16_t *srcChars)
const
4407 {
return doCompareCodePointOrder(start, _length, srcChars, 0, _length); }
4410 UnicodeString::compareCodePointOrder(int32_t start,
4412 const char16_t *srcChars,
4414 int32_t srcLength)
const
4415 {
return doCompareCodePointOrder(start, _length, srcChars, srcStart, srcLength); }
4418 UnicodeString::compareCodePointOrderBetween(int32_t start,
4422 int32_t srcLimit)
const
4423 {
return doCompareCodePointOrder(start, limit - start,
4424 srcText, srcStart, srcLimit - srcStart); }
4427 UnicodeString::doCaseCompare(int32_t start,
4432 uint32_t options)
const
4435 return static_cast<int8_t
>(!isBogus());
4437 srcText.pinIndices(srcStart, srcLength);
4438 return doCaseCompare(start, thisLength, srcText.getArrayStart(), srcStart, srcLength, options);
4444 return doCaseCompare(0, length(), text, 0, text.
length(), options);
4448 UnicodeString::caseCompare(int32_t start,
4451 uint32_t options)
const {
4452 return doCaseCompare(start, _length, srcText, 0, srcText.
length(), options);
4458 uint32_t options)
const {
4459 return doCaseCompare(0, length(), srcChars, 0, srcLength, options);
4463 UnicodeString::caseCompare(int32_t start,
4468 uint32_t options)
const {
4469 return doCaseCompare(start, _length, srcText, srcStart, srcLength, options);
4473 UnicodeString::caseCompare(int32_t start,
4475 const char16_t *srcChars,
4476 uint32_t options)
const {
4477 return doCaseCompare(start, _length, srcChars, 0, _length, options);
4481 UnicodeString::caseCompare(int32_t start,
4483 const char16_t *srcChars,
4486 uint32_t options)
const {
4487 return doCaseCompare(start, _length, srcChars, srcStart, srcLength, options);
4491 UnicodeString::caseCompareBetween(int32_t start,
4496 uint32_t options)
const {
4497 return doCaseCompare(start, limit - start, srcText, srcStart, srcLimit - srcStart, options);
4505 int32_t _length)
const
4508 srcText.pinIndices(srcStart, srcLength);
4510 return indexOf(srcText.getArrayStart(), srcStart, srcLength, start, _length);
4518 {
return indexOf(text, 0, text.
length(), 0, length()); }
4522 int32_t start)
const {
4524 return indexOf(text, 0, text.
length(), start, length() - start);
4530 int32_t _length)
const
4531 {
return indexOf(text, 0, text.
length(), start, _length); }
4534 UnicodeString::indexOf(
const char16_t *srcChars,
4536 int32_t start)
const {
4538 return indexOf(srcChars, 0, srcLength, start, length() - start);
4545 int32_t _length)
const
4546 {
return indexOf(srcChars, 0, srcLength, start, _length); }
4549 UnicodeString::indexOf(char16_t c,
4551 int32_t _length)
const
4552 {
return doIndexOf(c, start, _length); }
4557 int32_t _length)
const
4558 {
return doIndexOf(c, start, _length); }
4561 UnicodeString::indexOf(char16_t c)
const
4562 {
return doIndexOf(c, 0, length()); }
4566 {
return indexOf(c, 0, length()); }
4569 UnicodeString::indexOf(char16_t c,
4570 int32_t start)
const {
4572 return doIndexOf(c, start, length() - start);
4577 int32_t start)
const {
4579 return indexOf(c, start, length() - start);
4586 int32_t _length)
const
4587 {
return lastIndexOf(srcChars, 0, srcLength, start, _length); }
4590 UnicodeString::lastIndexOf(
const char16_t *srcChars,
4592 int32_t start)
const {
4594 return lastIndexOf(srcChars, 0, srcLength, start, length() - start);
4602 int32_t _length)
const
4605 srcText.pinIndices(srcStart, srcLength);
4607 return lastIndexOf(srcText.getArrayStart(), srcStart, srcLength, start, _length);
4616 int32_t _length)
const
4617 {
return lastIndexOf(text, 0, text.
length(), start, _length); }
4621 int32_t start)
const {
4623 return lastIndexOf(text, 0, text.
length(), start, length() - start);
4628 {
return lastIndexOf(text, 0, text.
length(), 0, length()); }
4631 UnicodeString::lastIndexOf(char16_t c,
4633 int32_t _length)
const
4634 {
return doLastIndexOf(c, start, _length); }
4639 int32_t _length)
const {
4640 return doLastIndexOf(c, start, _length);
4644 UnicodeString::lastIndexOf(char16_t c)
const
4645 {
return doLastIndexOf(c, 0, length()); }
4649 return lastIndexOf(c, 0, length());
4653 UnicodeString::lastIndexOf(char16_t c,
4654 int32_t start)
const {
4656 return doLastIndexOf(c, start, length() - start);
4661 int32_t start)
const {
4663 return lastIndexOf(c, start, length() - start);
4668 {
return doEqualsSubstring(0, text.
length(), text, 0, text.
length()); }
4673 int32_t srcLength)
const
4674 {
return doEqualsSubstring(0, srcLength, srcText, srcStart, srcLength); }
4679 srcLength =
u_strlen(toUCharPtr(srcChars));
4681 return doEqualsSubstring(0, srcLength, srcChars, 0, srcLength);
4685 UnicodeString::startsWith(
const char16_t *srcChars, int32_t srcStart, int32_t srcLength)
const {
4687 srcLength =
u_strlen(toUCharPtr(srcChars));
4689 return doEqualsSubstring(0, srcLength, srcChars, srcStart, srcLength);
4694 {
return doEqualsSubstring(length() - text.
length(), text.
length(),
4695 text, 0, text.
length()); }
4700 int32_t srcLength)
const {
4701 srcText.pinIndices(srcStart, srcLength);
4702 return doEqualsSubstring(length() - srcLength, srcLength,
4703 srcText, srcStart, srcLength);
4708 int32_t srcLength)
const {
4710 srcLength =
u_strlen(toUCharPtr(srcChars));
4712 return doEqualsSubstring(length() - srcLength, srcLength, srcChars, 0, srcLength);
4716 UnicodeString::endsWith(
const char16_t *srcChars,
4718 int32_t srcLength)
const {
4720 srcLength =
u_strlen(toUCharPtr(srcChars + srcStart));
4722 return doEqualsSubstring(length() - srcLength, srcLength,
4723 srcChars, srcStart, srcLength);
4730 UnicodeString::replace(int32_t start,
4733 {
return doReplace(start, _length, srcText, 0, srcText.
length()); }
4736 UnicodeString::replace(int32_t start,
4741 {
return doReplace(start, _length, srcText, srcStart, srcLength); }
4744 UnicodeString::replace(int32_t start,
4748 {
return doReplace(start, _length, srcChars, 0, srcLength); }
4751 UnicodeString::replace(int32_t start,
4753 const char16_t *srcChars,
4756 {
return doReplace(start, _length, srcChars, srcStart, srcLength); }
4759 UnicodeString::replace(int32_t start,
4762 {
return doReplace(start, _length, &srcChar, 0, 1); }
4765 UnicodeString::replaceBetween(int32_t start,
4768 {
return doReplace(start, limit - start, srcText, 0, srcText.
length()); }
4771 UnicodeString::replaceBetween(int32_t start,
4776 {
return doReplace(start, limit - start, srcText, srcStart, srcLimit - srcStart); }
4781 {
return findAndReplace(0, length(), oldText, 0, oldText.
length(),
4782 newText, 0, newText.
length()); }
4785 UnicodeString::findAndReplace(int32_t start,
4789 {
return findAndReplace(start, _length, oldText, 0, oldText.
length(),
4790 newText, 0, newText.
length()); }
4796 UnicodeString::doExtract(int32_t start,
4799 { target.
replace(0, target.
length(), *
this, start, _length); }
4802 UnicodeString::extract(int32_t start,
4805 int32_t targetStart)
const
4806 { doExtract(start, _length, target, targetStart); }
4809 UnicodeString::extract(int32_t start,
4812 { doExtract(start, _length, target); }
4814 #if !UCONFIG_NO_CONVERSION
4817 UnicodeString::extract(int32_t start,
4820 const char *codepage)
const
4824 return extract(start, _length, dst, dst !=
nullptr ? 0xffffffff : 0, codepage);
4830 UnicodeString::extractBetween(int32_t start,
4833 int32_t dstStart)
const {
4836 doExtract(start, limit - start, dst, dstStart);
4840 UnicodeString::tempSubStringBetween(int32_t start, int32_t limit)
const {
4841 return tempSubString(start, limit - start);
4845 UnicodeString::doCharAt(int32_t offset)
const
4847 if (
static_cast<uint32_t
>(offset) <
static_cast<uint32_t
>(length())) {
4848 return getArrayStart()[offset];
4850 return kInvalidUChar;
4855 UnicodeString::charAt(int32_t offset)
const
4856 {
return doCharAt(offset); }
4859 UnicodeString::operator[] (int32_t offset)
const
4860 {
return doCharAt(offset); }
4863 UnicodeString::isEmpty()
const {
4865 return (fUnion.fFields.fLengthAndFlags>>kLengthShift) == 0;
4872 UnicodeString::setZeroLength() {
4873 fUnion.fFields.fLengthAndFlags &= kAllStorageFlags;
4877 UnicodeString::setShortLength(int32_t len) {
4879 fUnion.fFields.fLengthAndFlags =
4880 static_cast<int16_t
>((fUnion.fFields.fLengthAndFlags & kAllStorageFlags) | (len << kLengthShift));
4884 UnicodeString::setLength(int32_t len) {
4885 if(len <= kMaxShortLength) {
4886 setShortLength(len);
4888 fUnion.fFields.fLengthAndFlags |= kLengthIsLarge;
4889 fUnion.fFields.fLength = len;
4894 UnicodeString::setToEmpty() {
4895 fUnion.fFields.fLengthAndFlags = kShortString;
4899 UnicodeString::setArray(char16_t *array, int32_t len, int32_t capacity) {
4901 fUnion.fFields.fArray = array;
4902 fUnion.fFields.fCapacity = capacity;
4905 inline UnicodeString&
4906 UnicodeString::operator= (char16_t ch)
4907 {
return doReplace(0, length(), &ch, 0, 1); }
4911 {
return replace(0, length(), ch); }
4919 return doReplace(0, length(), srcText, srcStart, srcLength);
4927 srcText.pinIndex(srcStart);
4928 return doReplace(0, length(), srcText, srcStart, srcText.
length() - srcStart);
4934 return copyFrom(srcText);
4938 UnicodeString::setTo(
const char16_t *srcChars,
4942 return doReplace(0, length(), srcChars, 0, srcLength);
4946 UnicodeString::setTo(char16_t srcChar)
4949 return doReplace(0, length(), &srcChar, 0, 1);
4956 return replace(0, length(), srcChar);
4963 {
return doAppend(srcText, srcStart, srcLength); }
4967 {
return doAppend(srcText, 0, srcText.
length()); }
4970 UnicodeString::append(
const char16_t *srcChars,
4973 {
return doAppend(srcChars, srcStart, srcLength); }
4978 {
return doAppend(srcChars, 0, srcLength); }
4981 UnicodeString::append(char16_t srcChar)
4982 {
return doAppend(&srcChar, 0, 1); }
4985 UnicodeString::operator+= (char16_t ch)
4986 {
return doAppend(&ch, 0, 1); }
4995 {
return doAppend(srcText, 0, srcText.
length()); }
4998 UnicodeString::insert(int32_t start,
5002 {
return doReplace(start, 0, srcText, srcStart, srcLength); }
5005 UnicodeString::insert(int32_t start,
5007 {
return doReplace(start, 0, srcText, 0, srcText.
length()); }
5010 UnicodeString::insert(int32_t start,
5011 const char16_t *srcChars,
5014 {
return doReplace(start, 0, srcChars, srcStart, srcLength); }
5017 UnicodeString::insert(int32_t start,
5020 {
return doReplace(start, 0, srcChars, 0, srcLength); }
5023 UnicodeString::insert(int32_t start,
5025 {
return doReplace(start, 0, &srcChar, 0, 1); }
5028 UnicodeString::insert(int32_t start,
5030 {
return replace(start, 0, srcChar); }
5034 UnicodeString::remove()
5046 UnicodeString::remove(int32_t start,
5049 if(start <= 0 && _length ==
INT32_MAX) {
5053 return doReplace(start, _length,
nullptr, 0, 0);
5057 UnicodeString::removeBetween(int32_t start,
5059 {
return doReplace(start, limit - start,
nullptr, 0, 0); }
5062 UnicodeString::retainBetween(int32_t start, int32_t limit) {
5064 return doReplace(0, start,
nullptr, 0, 0);
5068 UnicodeString::truncate(int32_t targetLength)
5070 if(isBogus() && targetLength == 0) {
5074 }
else if (
static_cast<uint32_t
>(targetLength) <
static_cast<uint32_t
>(length())) {
5075 setLength(targetLength);
5083 UnicodeString::reverse()
5084 {
return doReverse(0, length()); }
5087 UnicodeString::reverse(int32_t start,
5089 {
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.
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.
Implementation of ByteSink that writes to a "string".
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 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 & foldCase(uint32_t options=0)
Case-folds the characters in this string.
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.
UnicodeString & operator=(const S &src)
Assignment operator.
UnicodeString & append(const S &src)
Appends the characters in src which is, or which is implicitly convertible to, a std::u16string_view ...
UnicodeString & operator=(UnicodeString &&src) noexcept
Move assignment operator; might leave src in bogus state.
virtual ~UnicodeString()
Destructor.
UnicodeString(const char *codepageData, int32_t dataLength, const char *codepage)
char* constructor.
UnicodeString & toLower()
Convert the characters in this to lower case following the conventions of the default locale.
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 & fastCopyFrom(const UnicodeString &src)
Almost the same as the assignment operator.
UnicodeString & toTitle(BreakIterator *titleIter)
Titlecase this string, convenience function using the default locale.
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(int32_t capacity, UChar32 c, int32_t count)
Construct a UnicodeString with capacity to hold capacity char16_ts.
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...
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...
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...
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.
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 & operator=(const UnicodeString &srcText)
Assignment operator.
UnicodeString & append(UChar32 srcChar)
Append the code point srcChar to the UnicodeString object.
StringClass & toUTF8String(StringClass &result) const
Convert the UnicodeString to UTF-8 and append the result to a standard 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 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.
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.
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.
UNISTR_FROM_CHAR_EXPLICIT UnicodeString(UChar32 ch)
Single UChar32 (code point) constructor.
UnicodeString & setTo(UBool isTerminated, ConstChar16Ptr text, int32_t textLength)
Aliasing setTo() function, analogous to the readonly-aliasing char16_t* constructor.
static UnicodeString readOnlyAlias(const S &text)
Readonly-aliasing factory method.
UnicodeString & operator+=(const S &src)
Append operator.
UnicodeString & toTitle(BreakIterator *titleIter, const Locale &locale, uint32_t options)
Titlecase this string, with options.
virtual UnicodeString * clone() const override
Clone this object, an instance of a subclass of Replaceable.
int32_t extract(char *dest, int32_t destCapacity, UConverter *cnv, UErrorCode &errorCode) const
Convert the UnicodeString into a codepage string using an existing UConverter.
UnicodeString(UnicodeString &&src) noexcept
Move constructor; might leave src in bogus state.
UnicodeString(const char16_t *text, int32_t textLength)
char16_t* constructor.
UnicodeString & replace(int32_t start, int32_t length, UChar32 srcChar)
Replace the characters in the range [start, start + length) with the code point srcChar.
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.
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.
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.
UnicodeString & setCharAt(int32_t offset, char16_t ch)
Set the character at the specified offset to the specified character.
UnicodeString & setTo(char16_t *buffer, int32_t buffLength, int32_t buffCapacity)
Aliasing setTo() function, analogous to the writable-aliasing char16_t* constructor.
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).
char16_t * getBuffer(int32_t minCapacity)
Get a read/write pointer to the internal buffer.
void toUTF8(ByteSink &sink) const
Convert the UnicodeString to UTF-8 and write the result to a ByteSink.
virtual UBool hasMetaData() const override
Replaceable API.
UnicodeString & toUpper()
Convert the characters in this to UPPER CASE following the conventions of the default locale.
UnicodeString & toUpper(const Locale &locale)
Convert the characters in this to UPPER CASE following the conventions of a specific locale.
UnicodeString & trim()
Trims leading and trailing whitespace from this UnicodeString.
U_CAPI int32_t u_strlen(const UChar *s)
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
U_COMMON_API UnicodeString unistr_internalConcat(const UnicodeString &s1, std::u16string_view s2)
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
UnicodeString operator+(const UnicodeString &s1, const S &s2)
Creates a new UnicodeString from the concatenation of a UnicodeString and s2 which is,...
C++ API: Replaceable String.
C++ API: Central ICU header for including the C++ standard 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.