CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
string.h
1
2#ifndef _aspose_system_string_h_
3#define _aspose_system_string_h_
4
5#include <system/text/normalization_form.h>
6#include <system/string_comparison.h>
7#include <system/shared_ptr.h>
8#include <system/details/icu_namespace.h>
9#include <system/details/stack_array.h>
10#include <system/object.h>
11
12#include <istream>
13#include <ostream>
14#include <string>
15#include <sstream>
16#include <system/diagnostics/debug.h>
17#include <iterator>
18#include <cstdint>
19
20#include <fwd.h>
21
22#ifdef ASPOSECPPLIB_BEING_BUILT
23#include <unicode/unistr.h>
24#endif
26ASPOSECPP_3RD_PARTY_ICU_NAMESPACE_START {
28 ASPOSECPP_3RD_PARTY_CLASS(UnicodeString);
29}
30
32ASPOSECPP_3RD_PARTY_TYPEDEF(UChar, char16_t);
33
34namespace System { namespace Text { class StringBuilder; } }
35namespace System { namespace Text { namespace RegularExpressions { class Regex; } } }
36namespace System { namespace Text { namespace RegularExpressions { namespace Detail { class Formatter; } } } }
37namespace System { namespace Globalization { class CompareInfo; } }
38namespace System { namespace Globalization { class TextElementEnumerator; } }
39namespace System { namespace Globalization { class TextInfo; } }
40namespace System { namespace Collections { namespace Generic { template <typename T> class IEnumerable; } } }
41
42namespace System { namespace Details { template<typename T> class ArrayView; } }
43
44namespace System
45{
46
47namespace Detail {
49 ASPOSECPP_3RD_PARTY_TYPE_HOLDER(codeporting_icu::UnicodeString, UnicodeString, 64, size_t, UnicodeStringHolder);
50}
51
54{
56 None = 0,
59};
60
61using codeporting_icu::UnicodeString;
62
66template <typename T, typename CharT>
68 : public std::integral_constant<bool, std::is_same<typename std::remove_const<typename std::remove_pointer<typename std::decay<T>::type>::type>::type, CharT>::value> {};
69
73template <typename T, typename CharT>
75 public std::integral_constant<bool, IsStringByteSequence<T, CharT>::value && std::is_pointer<T>::value> {};
76
80template <typename T, typename CharT>
82 public std::integral_constant<bool, IsStringByteSequence<T, CharT>::value && std::is_array<T>::value> {};
83
121class ASPOSECPP_SHARED_CLASS String
122{
123 static const uintptr_t state_literal = 0;
124 static const uintptr_t state_null = 1;
125
129 friend class System::Text::RegularExpressions::Regex; // Uses private method Append for efficient string construction.
130 friend class System::Text::RegularExpressions::Detail::Formatter; // Uses private method Append for efficient string construction.
132 friend class System::Object;
133
135 RTTI_INFO_VALUE_TYPE(System::String);
136public:
138 using reverse_iterator = std::reverse_iterator<const char16_t*>;
139
141 ASPOSECPP_SHARED_API String();
142
145 template<typename T>
146 String(T& value, typename std::enable_if<IsStringLiteral<T, char16_t>::value>::type* = nullptr)
147 : String(value, std::extent<T>::value - 1, state_literal)
148 {}
149
152 template<typename T>
153 String(const T& value, typename std::enable_if<IsStringPointer<T, char16_t>::value>::type* = nullptr)
154 : String(value, -1)
155 {
156 m_state = state_literal;
157 }
158
161 template<typename T>
162 explicit String(T& value, typename std::enable_if<IsStringLiteral<T, char>::value>::type* = nullptr)
163 : String(value, std::extent<T>::value - 1)
164 {
165 m_state = state_literal;
166 }
167
170 template<typename T>
171 explicit String(const T& value, typename std::enable_if<IsStringPointer<T, char>::value>::type* = nullptr)
172 : String(value, -1)
173 {
174 m_state = state_literal;
175 }
176
180 ASPOSECPP_SHARED_API String(const char16_t* str, int length);
181
185 ASPOSECPP_SHARED_API String(const char* str, int length);
186
191 ASPOSECPP_SHARED_API String(const char16_t* str, int start, int length);
192
196 ASPOSECPP_SHARED_API explicit String(const char16_t ch, int count);
197
201 template<typename T>
202 String(const T& value,
203 typename std::enable_if<std::is_same<T, std::nullptr_t>::value>::type* = nullptr)
204 : String()
205 {
206 ASPOSE_UNUSED(value);
207 }
208
212 template<typename T>
213 explicit String(T& value, typename std::enable_if<IsStringLiteral<T, wchar_t>::value>::type* = nullptr)
214 : String(value, std::extent<T>::value - 1)
215 {}
216
220 template<typename T>
221 explicit String(const T& value, typename std::enable_if<IsStringPointer<T, wchar_t>::value>::type* = nullptr)
222 : String(value, -1)
223 {}
224
229 ASPOSECPP_SHARED_API explicit String(const wchar_t* str, int length);
234 ASPOSECPP_SHARED_API explicit String(const wchar_t ch, int count = 1);
235
238 ASPOSECPP_SHARED_API String(const String& str);
241 ASPOSECPP_SHARED_API String(String&& str) noexcept;
242
245 ASPOSECPP_SHARED_API String(const ArrayPtr<char16_t>& arr);
250 ASPOSECPP_SHARED_API String(const ArrayPtr<char16_t>& arr, int offset, int len);
251
253 ASPOSECPP_SHARED_API ~String();
254
257 ASPOSECPP_SHARED_API const UChar* u_str() const;
258
261 ASPOSECPP_SHARED_API const UChar* begin() const;
264 ASPOSECPP_SHARED_API const UChar* end() const;
265
268 ASPOSECPP_SHARED_API reverse_iterator rbegin() const;
271 ASPOSECPP_SHARED_API reverse_iterator rend() const;
272
275 ASPOSECPP_SHARED_API bool IsNullOrEmpty() const;
276
280 inline bool IsNull() const { return m_state == state_null; }
281
284 ASPOSECPP_SHARED_API bool IsEmpty() const;
285
288 ASPOSECPP_SHARED_API std::string ToUtf8String() const;
291 ASPOSECPP_SHARED_API std::wstring ToWCS() const;
294 ASPOSECPP_SHARED_API std::u16string ToU16Str() const;
297 ASPOSECPP_SHARED_API std::u32string ToU32Str() const;
301 ASPOSECPP_SHARED_API std::string ToAsciiString() const;
302
305 ASPOSECPP_SHARED_API String& reset();
306
309 ASPOSECPP_SHARED_API int get_Length() const;
313 ASPOSECPP_SHARED_API char_t operator[](int index) const;
318 ASPOSECPP_SHARED_API String& SetCharAt(int index, char_t ch);
319
323 ASPOSECPP_SHARED_API String& operator=(const String& str);
327 ASPOSECPP_SHARED_API String& operator=(String&& str) noexcept;
328
332 ASPOSECPP_SHARED_API String operator+(const String& str) const;
337 template <typename T, std::enable_if_t<IsStringLiteral<T, char_t>::value>* = nullptr>
338 String operator+(const T& arg) const
339 {
340 return *this + String(arg, std::extent<T>::value - 1);
341 }
342
346 ASPOSECPP_SHARED_API String operator+(char_t x) const;
350 ASPOSECPP_SHARED_API String operator+(int i) const;
354 ASPOSECPP_SHARED_API String operator+(uint32_t i) const;
358 ASPOSECPP_SHARED_API String operator+(double d) const;
362 ASPOSECPP_SHARED_API String operator+(int64_t v) const;
367 template <typename T, std::enable_if_t<IsSmartPtr<T>::value>* = nullptr>
368 String operator+(const T& value) const
369 {
370 return value == nullptr ? *this : *this + value->ToString();
371 }
376 template <typename T, std::enable_if_t<!IsSmartPtr<T>::value && !std::is_scalar<T>::value && !std::is_array<T>::value>* = nullptr>
377 String operator+(const T& value) const
378 {
379 return *this + value.ToString();
380 }
385 template <typename T, std::enable_if_t<std::is_same<T, bool>::value>* = nullptr>
386 String operator+(T arg) const
387 {
388 return String(*this).AddBoolImpl(arg);
389 }
390
394 ASPOSECPP_SHARED_API String& operator+=(char_t c);
398 ASPOSECPP_SHARED_API String& operator+=(const String& str);
402 ASPOSECPP_SHARED_API String& operator+=(double value);
406 ASPOSECPP_SHARED_API String& operator+=(uint8_t value);
410 ASPOSECPP_SHARED_API String& operator+=(int16_t value);
414 ASPOSECPP_SHARED_API String& operator+=(uint16_t value);
418 ASPOSECPP_SHARED_API String& operator+=(int32_t value);
422 ASPOSECPP_SHARED_API String& operator+=(uint32_t value);
426 ASPOSECPP_SHARED_API String& operator+=(int64_t value);
430 ASPOSECPP_SHARED_API String& operator+=(uint64_t value);
435 template <typename T, std::enable_if_t<std::is_same<T, bool>::value>* = nullptr>
437 {
438 return AddBoolImpl(value);
439 }
440
444 ASPOSECPP_SHARED_API bool operator==(const String& str) const;
447 ASPOSECPP_SHARED_API bool operator==(std::nullptr_t) const;
448
449
453 ASPOSECPP_SHARED_API bool operator!=(const String& str) const;
456 ASPOSECPP_SHARED_API bool operator!=(std::nullptr_t) const;
457
461 ASPOSECPP_SHARED_API bool operator<(const String& str) const;
462
465 explicit operator std::string() const
466 {
467 return ToUtf8String();
468 }
471 explicit operator std::wstring() const
472 {
473 return ToWCS();
474 }
477 explicit operator std::u16string() const
478 {
479 return ToU16Str();
480 }
483 explicit operator std::u32string() const
484 {
485 return ToU32Str();
486 }
487
490 ASPOSECPP_SHARED_API String Clone() const;
491
494 String ToString() const { return *this; }
497 String ToString(const SharedPtr<IFormatProvider>&) const { return *this; }
498
501 ASPOSECPP_SHARED_API int GetHashCode() const;
506 ASPOSECPP_SHARED_API bool Equals(const String& str, System::StringComparison comparison_type) const;
510 ASPOSECPP_SHARED_API bool Equals(const String& str) const;
511
515 ASPOSECPP_SHARED_API bool Contains(const String& str) const;
519 ASPOSECPP_SHARED_API int CompareTo(const String& str) const;
525 ASPOSECPP_SHARED_API void CopyTo(int sourceIndex, const ArrayPtr<char_t>& destination, int destinationIndex, int count) const;
529 ASPOSECPP_SHARED_API String Normalize(System::Text::NormalizationForm form) const;
533 ASPOSECPP_SHARED_API bool IsNormalized(System::Text::NormalizationForm form) const;
534
538 ASPOSECPP_SHARED_API bool StartsWith(const String& value) const;
543 ASPOSECPP_SHARED_API bool StartsWith(const String& value, System::StringComparison comparisonType) const;
549 ASPOSECPP_SHARED_API bool StartsWith(const String& value, bool ignoreCase, const SharedPtr<System::Globalization::CultureInfo>& culture = nullptr) const;
550
554 ASPOSECPP_SHARED_API bool EndsWith(const String& value) const;
559 ASPOSECPP_SHARED_API bool EndsWith(const String& value, System::StringComparison comparisonType) const;
565 ASPOSECPP_SHARED_API bool EndsWith(const String& value, bool ignoreCase, const SharedPtr<System::Globalization::CultureInfo>& culture = nullptr) const;
566
571 ASPOSECPP_SHARED_API ArrayPtr<char_t> ToCharArray(int32_t startIndex = 0, int32_t length = INT32_MAX) const;
577 ASPOSECPP_SHARED_API ArrayPtr<uint8_t> ToByteArray(int32_t startIndex = 0, int32_t length = INT32_MAX, bool LE = true) const;
578
581 ASPOSECPP_SHARED_API String ToUpper() const;
584 ASPOSECPP_SHARED_API String ToLower() const;
585
589 ASPOSECPP_SHARED_API String ToLower(const SharedPtr<System::Globalization::CultureInfo>& cultureInfo) const;
593 ASPOSECPP_SHARED_API String ToUpper(const SharedPtr<System::Globalization::CultureInfo>& cultureInfo) const;
594
597 ASPOSECPP_SHARED_API String ToUpperInvariant() const;
600 ASPOSECPP_SHARED_API String ToLowerInvariant() const;
601
605 ASPOSECPP_SHARED_API String Substring(int32_t startIndex) const;
610 ASPOSECPP_SHARED_API String Substring(int32_t startIndex, int32_t length) const;
615 ASPOSECPP_SHARED_API String Remove(int32_t startIndex, int32_t count = INT32_MAX) const;
616
620 bool Is(const System::TypeInfo &target) const
621 {
622 return GetType() == target;
623 }
624
625 // Finds
626
631 ASPOSECPP_SHARED_API int IndexOf(const String& str, System::StringComparison comparison_type) const;
636 ASPOSECPP_SHARED_API int IndexOf(char_t c, int startIndex = 0) const;
642 ASPOSECPP_SHARED_API int IndexOf(char_t c, int startIndex, int count) const;
647 ASPOSECPP_SHARED_API int IndexOf(const String& str, int startIndex = 0) const;
653 ASPOSECPP_SHARED_API int IndexOf(const String& str, int startIndex, System::StringComparison comparison_type) const;
660 ASPOSECPP_SHARED_API int IndexOf(const String& value, int startIndex, int count, System::StringComparison comparisonType) const;
666 ASPOSECPP_SHARED_API int IndexOf(const String& str, int startIndex, int count) const;
667
672 ASPOSECPP_SHARED_API int IndexOfAny(char_t c, int startIndex = 0) const;
677 ASPOSECPP_SHARED_API int IndexOfAny(const String& str, int startIndex = 0) const;
682 ASPOSECPP_SHARED_API int IndexOfAny(const ArrayPtr<char_t>& anyOf) const;
688 ASPOSECPP_SHARED_API int IndexOfAny(const ArrayPtr<char_t>& anyOf, int32_t startindex) const;
695 ASPOSECPP_SHARED_API int IndexOfAny(const ArrayPtr<char_t>& anyOf, int32_t startindex, int32_t count) const;
696
701 ASPOSECPP_SHARED_API int LastIndexOf(const String& str, int startIndex = INT32_MAX) const;
706 ASPOSECPP_SHARED_API int LastIndexOf(const String& str, System::StringComparison comparison_type) const;
712 ASPOSECPP_SHARED_API int LastIndexOf(const String& str, int startIndex, System::StringComparison comparison_type) const;
719 ASPOSECPP_SHARED_API int LastIndexOf(const String& value, int startIndex, int count, StringComparison comparisonType) const;
720
724 ASPOSECPP_SHARED_API int LastIndexOf(char_t value) const;
729 ASPOSECPP_SHARED_API int LastIndexOf(char_t value, int32_t startIndex) const;
735 ASPOSECPP_SHARED_API int LastIndexOf(char_t value, int32_t startIndex, int32_t count) const;
736
741 ASPOSECPP_SHARED_API int LastIndexOfAny(const ArrayPtr<char_t>& anyOf) const;
747 ASPOSECPP_SHARED_API int LastIndexOfAny(const ArrayPtr<char_t>& anyOf, int32_t startindex) const;
754 ASPOSECPP_SHARED_API int LastIndexOfAny(const ArrayPtr<char_t>& anyOf, int32_t startindex, int32_t count) const;
755
756 // Trim
757
760 ASPOSECPP_SHARED_API String Trim() const;
764 ASPOSECPP_SHARED_API String Trim(char_t ch) const;
768 ASPOSECPP_SHARED_API String Trim(const String& anyOf) const;
772 ASPOSECPP_SHARED_API String Trim(const ArrayPtr<char_t>& anyOf) const;
773
776 ASPOSECPP_SHARED_API String TrimStart() const;
780 ASPOSECPP_SHARED_API String TrimStart(char_t ch) const;
784 ASPOSECPP_SHARED_API String TrimStart(const String& anyOf) const;
788 ASPOSECPP_SHARED_API String TrimStart(const ArrayPtr<char_t>& anyOf) const;
789
792 ASPOSECPP_SHARED_API String TrimEnd() const;
796 ASPOSECPP_SHARED_API String TrimEnd(char_t ch) const;
800 ASPOSECPP_SHARED_API String TrimEnd(const String& anyOf) const;
804 ASPOSECPP_SHARED_API String TrimEnd(const ArrayPtr<char_t>& anyOf) const;
805
810 ASPOSECPP_SHARED_API String PadLeft(int totalWidth, char_t c = u' ') const;
815 ASPOSECPP_SHARED_API String PadRight(int totalWidth, char_t c = u' ') const;
816
817 // Replace
818
823 ASPOSECPP_SHARED_API String Replace(char_t oldValue, char_t newValue) const;
828 ASPOSECPP_SHARED_API String Replace(const String& oldValue, const String& newValue) const;
829
830 // Insert
831
836 ASPOSECPP_SHARED_API String Insert(int startIndex, const String& value) const;
837
838 // Split
843 ASPOSECPP_SHARED_API ArrayPtr<String> Split(char_t separator = u' ', StringSplitOptions opt = StringSplitOptions::None) const;
849 ASPOSECPP_SHARED_API ArrayPtr<String> Split(char_t separator, int32_t count, StringSplitOptions opt = StringSplitOptions::None) const;
855 ASPOSECPP_SHARED_API ArrayPtr<String> Split(char_t separatorA, char_t separatorB, StringSplitOptions opt = StringSplitOptions::None) const;
860 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const ArrayPtr<char_t>& separators, StringSplitOptions opt = StringSplitOptions::None) const;
866 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const ArrayPtr<char_t>& separators, int32_t count, StringSplitOptions opt = StringSplitOptions::None) const;
867
872 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const String& separator, StringSplitOptions opt = StringSplitOptions::None) const;
878 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const String& separator, int count, StringSplitOptions opt = StringSplitOptions::None) const;
883 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const ArrayPtr<String>& separators, StringSplitOptions opt = StringSplitOptions::None) const;
889 ASPOSECPP_SHARED_API ArrayPtr<String> Split(const ArrayPtr<String>& separators, int count, StringSplitOptions opt = StringSplitOptions::None) const;
890
891 // static members
892
894 static const ASPOSECPP_SHARED_API String Empty;
896 static const ASPOSECPP_SHARED_API String Null;
897
901 static ASPOSECPP_SHARED_API bool IsNullOrEmpty(const String& str);
905 static ASPOSECPP_SHARED_API bool IsNullOrWhiteSpace(const String& str);
910 static ASPOSECPP_SHARED_API bool Equals(const String& strA, const String& strB);
916 static ASPOSECPP_SHARED_API bool Equals(const String& strA, const String& strB, System::StringComparison comparison_type);
917
926 static ASPOSECPP_SHARED_API int Compare(const String& strA, int indexA, const String& strB, int indexB,
927 int length, bool ignoreCase = false);
928
938 static ASPOSECPP_SHARED_API int Compare(const String& strA, int indexA, const String& strB, int indexB,
939 int length, bool ignoreCase,
941
947 static ASPOSECPP_SHARED_API int Compare(const String& strA, const String& strB, System::StringComparison comparison_type);
956 static ASPOSECPP_SHARED_API int Compare(const String& strA, int indexA, const String& strB, int indexB,
957 int length, System::StringComparison comparison_type);
958
964 static ASPOSECPP_SHARED_API int Compare(const String& strA, const String& strB, bool ignoreCase = false);
971 static ASPOSECPP_SHARED_API int Compare(const String& strA, const String& strB, bool ignoreCase,
973
978 static ASPOSECPP_SHARED_API int CompareOrdinal(const String& strA, const String& strB);
986 static ASPOSECPP_SHARED_API int CompareOrdinal(const String& strA, int indexA, const String& strB, int indexB, int length);
987
994 static ASPOSECPP_SHARED_API String Join(const String& separator, const ArrayPtr<String>& parts, int startIndex = 0, int count = -1);
995
1002 static ASPOSECPP_SHARED_API String Join(const String& separator, const System::Details::ArrayView<String>& parts, int startIndex = 0, int count = -1);
1003
1008 static ASPOSECPP_SHARED_API String Join(const String& separator, const SharedPtr<System::Collections::Generic::IEnumerable<String> >& parts);
1009
1014 static ASPOSECPP_SHARED_API String Join(const String& separator, const ArrayPtr<SharedPtr<Object>>& parts);
1015
1019 static ASPOSECPP_SHARED_API String Concat(const ArrayPtr<String>& parts);
1024 static ASPOSECPP_SHARED_API String Concat(const String & str0, const String & str1);
1030 static ASPOSECPP_SHARED_API String Concat(const String & str0, const String & str1, const String & str2);
1031
1038 static ASPOSECPP_SHARED_API String Concat(const String& str0, const String& str1, const String& str2, const String& str3);
1039
1043 static String Copy(const String& str) { return str; }
1044
1050 template<class... Args>
1051 static String Format(const SharedPtr<IFormatProvider>& fp, const String& format, const Args&... args);
1052
1057 template<class... Args>
1058 static String Format(std::nullptr_t, const String& format, const Args&... args);
1059
1064 template<std::size_t N, class... Args>
1065 static String Format(std::nullptr_t, const char16_t(&format)[N], const Args&... args);
1066
1071 template<class... Args>
1072 static String Format(const String& format, const Args&... args);
1073
1078 template<class T>
1079 static String Format(const String& format, const System::ArrayPtr<T>& args);
1080
1084 static ASPOSECPP_SHARED_API String FromUtf8(const char* utf8);
1089 static ASPOSECPP_SHARED_API String FromUtf8(const char* utf8, int len);
1093 static ASPOSECPP_SHARED_API String FromUtf8(const uint8_t* utf8);
1097 static ASPOSECPP_SHARED_API String FromUtf8(const std::string& utf8);
1101 static ASPOSECPP_SHARED_API String FromWCS(const std::wstring& wcs);
1106 static ASPOSECPP_SHARED_API String FromUtf32(const uint32_t *utf32, int32_t length);
1110 static ASPOSECPP_SHARED_API String FromUtf16(const std::u16string& u16str);
1114 static ASPOSECPP_SHARED_API String FromAscii(const char* asciiStr);
1119 static ASPOSECPP_SHARED_API String FromAscii(const char* asciiStr, int len);
1123 static ASPOSECPP_SHARED_API String FromAscii(const std::string& asciiStr);
1124
1127 explicit ASPOSECPP_SHARED_API String(const codeporting_icu::UnicodeString& str);
1130 explicit ASPOSECPP_SHARED_API String(codeporting_icu::UnicodeString&& str) noexcept;
1133 explicit String(const std::wstring& str) : String(str.data(), ASPOSECPP_CHECKED_CAST(int, str.length())) {};
1136 explicit String(const std::u16string& str) : String(str.data(), ASPOSECPP_CHECKED_CAST(int, str.length())) {};
1139 explicit ASPOSECPP_SHARED_API String(const std::string& utf8str);
1142 explicit ASPOSECPP_SHARED_API String(const std::u32string& u32str);
1143
1146 bool ASPOSECPP_SHARED_API IsAsciiString() const;
1147
1152 int ASPOSECPP_SHARED_API FastToAscii(char buffer[], int buffer_size) const;
1153
1154protected:
1159 ASPOSECPP_SHARED_API String& Append(const char16_t *src,
1160 int32_t startIndex,
1161 int32_t count);
1162
1164 mutable Detail::UnicodeStringHolder m_str; // mutable because of u_str
1165
1169 uintptr_t m_state;
1170
1171#if defined(_DEBUG) && (defined(_MSC_VER) || defined(__GNUC__))
1172 union IcuDebugHelper
1173 {
1174 struct
1175 {
1176 int16_t fLengthAndFlags;
1177 char16_t fBuffer[(int32_t)(64 - sizeof(void *) - 2) / 2];
1178 } fStackFields;
1179 struct
1180 {
1181 int16_t fLengthAndFlags;
1182 int32_t fLength;
1183 int32_t fCapacity;
1184 char16_t *fArray;
1185 } fFields;
1186 } static icuDebugHelper;
1187#endif
1188
1189private:
1190 static bool StartsWithImpl(const String& that, const String& other, System::StringComparison comparisonType,
1192
1193 static bool EndsWithImpl(const String& that, const String& other, System::StringComparison comparisonType,
1195
1196 static int32_t CompareImpl(const String& strA, int32_t indexA, const String& strB, int32_t indexB,
1197 int32_t length, StringComparison comparisonType,
1199
1200 static int LastIndexOfOrdinalIgnoreCaseImpl(const String& source, const String& value, int startIndex, int count);
1201 static int IndexOfOrdinalIgnoreCaseImpl(const String& source, const String& value, int startIndex, int count);
1202
1203 ASPOSECPP_SHARED_API String& AddBoolImpl(bool value);
1204
1205 static SharedPtr<Text::StringBuilder> GetBuilder();
1206
1207 // Special ctor for literals
1208 ASPOSECPP_SHARED_API String(const char16_t* str, int length, uintptr_t state);
1209
1210 inline void SetState()
1211 {
1212 m_state = reinterpret_cast<uintptr_t>(this);
1213 }
1214
1215}; // class String
1216
1222template<typename T>
1223typename std::enable_if<IsStringLiteral<T, char_t>::value, String>::type inline operator+(T& left, const String& right)
1224{
1225 return String(left, std::extent<T>::value - 1) + right;
1226}
1227
1233template<typename T>
1234typename std::enable_if<IsStringPointer<T, char_t>::value, String>::type inline operator+(T& left, const String& right)
1235{
1236 return String(left) + right;
1237}
1238
1239
1244String inline operator+(const char_t left, const String& right)
1245{
1246 return String(left, 1) + right;
1247}
1248
1254template<class Chars, typename std::enable_if<IsStringLiteral<Chars, char_t>::value>::type* = nullptr>
1255bool inline operator==(Chars& left, const String& right)
1256{
1257 return String(left, std::extent<Chars>::value - 1) == right;
1258}
1259
1265template<class T, typename std::enable_if<IsStringPointer<T, char_t>::value>::type* = nullptr>
1266bool inline operator==(T& left, const String& right)
1267{
1268 return String(left) == right;
1269}
1270
1276template<class Chars, typename std::enable_if<IsStringLiteral<Chars, char_t>::value>::type* = nullptr>
1277bool inline operator!=(Chars& left, const String& right)
1278{
1279 return !(String(left, std::extent<Chars>::value - 1) == right);
1280}
1281
1287template<class T, typename std::enable_if<IsStringPointer<T, char_t>::value>::type* = nullptr>
1288bool inline operator!=(T& left, const String& right)
1289{
1290 return !(String(left) == right);
1291}
1292
1297ASPOSECPP_SHARED_API bool operator==(const SharedPtr<Object>& left, const String& right);
1302ASPOSECPP_SHARED_API bool operator!=(const SharedPtr<Object>& left, const String& right);
1303
1307ASPOSECPP_SHARED_API bool operator==(std::nullptr_t, const String& str);
1311ASPOSECPP_SHARED_API bool operator!=(std::nullptr_t, const String& str);
1312
1317ASPOSECPP_SHARED_API std::ostream& operator<<(std::ostream& os, const String& str);
1322ASPOSECPP_SHARED_API std::wostream& operator<<(std::wostream& os, const String& str);
1323
1328ASPOSECPP_SHARED_API std::istream& operator>>(std::istream &in, String &str);
1333ASPOSECPP_SHARED_API std::wistream& operator>>(std::wistream &in, String &str);
1334
1337template <>
1338struct CastResult<String>
1339{
1341 typedef String type;
1342};
1344
1348template <>
1349inline bool Object::ReferenceEquals(String const& str, std::nullptr_t)
1350{
1351 return str.IsNull();
1352}
1353
1358template <>
1359inline bool Object::ReferenceEquals(String const& str1, String const& str2)
1360{
1361 return str1.m_state == str2.m_state && (str1.m_state == String::state_null || str1 == str2);
1362}
1363
1367ASPOSECPP_SHARED_API void PrintTo(const System::String& value, std::ostream* os);
1368
1369
1370} // namespace System
1371
1372// boost::hash specialization for System::String
1373
1374namespace std
1375{
1377 template <>
1378 struct hash<System::String>
1379 {
1383 std::size_t operator()(const System::String& str) const
1384 {
1385 return static_cast<std::size_t>(str.GetHashCode());
1386 }
1387 };
1388}
1389
1391typedef char16_t* system_char_array;
1393typedef char16_t const* const_system_char_array;
1394
1395#include <system/details/format_builder.h>
1396
1397namespace System {
1398
1404template<class... Args>
1405String String::Format(const SharedPtr<IFormatProvider>& fp, const String& format, const Args&... args)
1406{
1407 System::Details::FormatBuilder builder(format, fp);
1408 System::Details::FormatBuilder::AddArguments(builder, args...);
1409
1410 return builder.BuildResult();
1411}
1412
1417template<class... Args>
1418String String::Format(std::nullptr_t, const String& format, const Args&... args)
1419{
1420 System::Details::FormatBuilder builder(format);
1421 System::Details::FormatBuilder::AddArguments(builder, args...);
1422
1423 return builder.BuildResult();
1424}
1425
1430template<std::size_t N, class... Args>
1431String String::Format(std::nullptr_t, const char16_t (&format)[N], const Args&... args)
1432{
1433 System::Details::FormatBuilder builder(format);
1434 System::Details::FormatBuilder::AddArguments(builder, args...);
1435
1436 return builder.BuildResult();
1437}
1438
1439
1444template<class... Args>
1445String String::Format(const String& format, const Args&... args)
1446{
1447 System::Details::FormatBuilder builder(format);
1448 System::Details::FormatBuilder::AddArguments(builder, args...);
1449
1450 return builder.BuildResult();
1451}
1452
1457template<class T>
1459{
1460 System::Details::FormatBuilder builder(format);
1461 System::Details::FormatBuilder::AddArguments(builder, args);
1462
1463 return builder.BuildResult();
1464}
1465} // namespace System
1466
1467#endif // _aspose_system_string_h_
Makes culture-sensitive string comparison. Objects of this class should only be allocated using Syste...
Definition: compare_info.h:24
Enumerator to iterate through string elements (characters). Objects of this class should only be allo...
Definition: text_element_enumerator.h:28
Defines locale-specific text properties. Setter operations are only enabled on non-read-only objects....
Definition: text_info.h:23
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
virtual const TypeInfo & GetType() const
Gets actual type of object. Analog of C# System.Object.GetType() call.
static bool ReferenceEquals(ptr const &objA, ptr const &objB)
Compares objects by reference.
Definition: object.h:115
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
String & operator+=(uint8_t value)
Concatenation assignment operator.
String(const char *str, int length)
Constructs string from character string pointer and explicit length.
char_t operator[](int index) const
Gets character at specified position.
String(const std::wstring &str)
Creates String from widestring.
Definition: string.h:1133
ArrayPtr< char_t > ToCharArray(int32_t startIndex=0, int32_t length=INT32_MAX) const
Converts string or substring to array of characters.
int IndexOfAny(const ArrayPtr< char_t > &anyOf) const
Looks for any of passed characters through the whole string. Compares first string character to all c...
String(const String &str)
Copy constructor.
static String FromAscii(const char *asciiStr, int len)
Creates String from ASCII string.
int IndexOfAny(char_t c, int startIndex=0) const
Character forward lookup.
String PadRight(int totalWidth, char_t c=u' ') const
Adds padding on the right of original string.
String(const T &value, typename std::enable_if< IsStringPointer< T, wchar_t >::value >::type *=nullptr)
Constructs string based on widecharacter string pointer. Treats pointed string as null-terminated,...
Definition: string.h:221
bool EndsWith(const String &value, bool ignoreCase, const SharedPtr< System::Globalization::CultureInfo > &culture=nullptr) const
Checks if string ends with specified substring.
String(const T &value, typename std::enable_if< IsStringPointer< T, char >::value >::type *=nullptr)
Constructs string based on character string pointer. Treats pointed string as null-terminated in UTF8...
Definition: string.h:171
std::u16string ToU16Str() const
Converts string to std::u16string.
bool operator<(const String &str) const
Order-compares strings.
ArrayPtr< String > Split(char_t separatorA, char_t separatorB, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by one of two characters.
String Substring(int32_t startIndex, int32_t length) const
Extracts substring.
int IndexOf(const String &str, int startIndex=0) const
Substring forward lookup.
String TrimEnd(const String &anyOf) const
Removes all occurrences of passed characters from end of the string.
String & operator+=(int32_t value)
Concatenation assignment operator.
String & operator=(const String &str)
Assignment operator.
static String FromUtf8(const std::string &utf8)
Creates String from utf8 string.
int IndexOfAny(const String &str, int startIndex=0) const
Consequently looks for all characters of str in this. If first character is found,...
String ToLower() const
Converts all string's characters to lower case.
bool IsNormalized(System::Text::NormalizationForm form) const
Checks if unicode string is normalized using normalization form specified.
String Remove(int32_t startIndex, int32_t count=INT32_MAX) const
Extracts everything but substring from current string.
String(const std::u32string &u32str)
Creates String from std::u32string string.
String TrimStart(const String &anyOf) const
Removes all occurrences of passed characters from beginning of the string.
String & reset()
Sets string to null. Is analogous to 'string_variable_name = null' in C#.
String & Append(const char16_t *src, int32_t startIndex, int32_t count)
Puts some characters into string. Changes string size.
String & operator+=(T value)
Concatenation assignment operator.
Definition: string.h:436
uintptr_t m_state
String state. Contains value 0 if string is null, 1 if string is constructed from string literal.
Definition: string.h:1169
String & operator+=(const String &str)
Concatenation assignment operator.
String Trim(const String &anyOf) const
Removes all occurrences of passed characters from both beginning and end of the string.
~String()
Destructor.
bool Equals(const String &str) const
String equality comparison. Uses System::StringComparison::Ordinal comparison mode.
String TrimStart() const
Removes all whitespace characters from beginning of the string.
String & operator+=(char_t c)
Concatenation assignment operator.
bool EndsWith(const String &value) const
Checks if string ends with specified substring.
int LastIndexOf(const String &str, System::StringComparison comparison_type) const
Substring backward lookup.
String Clone() const
Creates a copy of current string.
int get_Length() const
Gets string length.
static int Compare(const String &strA, int indexA, const String &strB, int indexB, int length, bool ignoreCase, const SharedPtr< System::Globalization::CultureInfo > &ci)
Less-equal-greater-compares two substrings.
bool operator==(const String &str) const
Equality comparison operator.
String & operator+=(int64_t value)
Concatenation assignment operator.
int IndexOf(const String &str, System::StringComparison comparison_type) const
Substring forward lookup.
int GetHashCode() const
Hashes contained string. Implemented in ICU, doesn't match hashes in C#.
reverse_iterator rbegin() const
Returns reverse iterator to the last character (if any) of actual string buffer.
String ToLower(const SharedPtr< System::Globalization::CultureInfo > &cultureInfo) const
Converts all string's characters to lower case using specific culture.
String Trim(char_t ch) const
Removes all occurrences of passed character from both beginning and end of the string.
String(codeporting_icu::UnicodeString &&str) noexcept
Move constructor.
String(const std::u16string &str)
Creates String from utf16 string.
Definition: string.h:1136
static String Join(const String &separator, const SharedPtr< System::Collections::Generic::IEnumerable< String > > &parts)
Joins array using string as separator.
int LastIndexOf(char_t value, int32_t startIndex, int32_t count) const
Character backward lookup.
static String FromAscii(const std::string &asciiStr)
Creates String from ASCII string.
String & operator=(String &&str) noexcept
Move assignment operator.
static String Format(const SharedPtr< IFormatProvider > &fp, const String &format, const Args &... args)
Formats string in C# style.
Definition: string.h:1405
int LastIndexOfAny(const ArrayPtr< char_t > &anyOf) const
Looks for any of passed characters through whole string backwardly. Compares last string character to...
Detail::UnicodeStringHolder m_str
Actual string value.
Definition: string.h:1164
static String FromUtf16(const std::u16string &u16str)
Creates String from utf16 string.
int LastIndexOf(const String &str, int startIndex, System::StringComparison comparison_type) const
Substring backward lookup.
String operator+(const T &value) const
Adds reference type object string representation to the end of the string.
Definition: string.h:368
bool Is(const System::TypeInfo &target) const
Checks if string object is of type specified by TypeInfo passed.
Definition: string.h:620
String(String &&str) noexcept
Move constructor.
String ToLowerInvariant() const
Converts all string's characters to lower case using invariant culture.
bool StartsWith(const String &value) const
Checks if string begins with specified substring.
reverse_iterator rend() const
Returns reverse iterator to the before first character (if any) of actual string buffer.
String(const wchar_t *str, int length)
Constructs string from widecharacter string pointer and explicit length. Conversion from wchar_t is t...
int IndexOf(const String &str, int startIndex, int count) const
Substring forward lookup.
static String Join(const String &separator, const ArrayPtr< String > &parts, int startIndex=0, int count=-1)
Joins array using string as separator.
static bool Equals(const String &strA, const String &strB)
Equal-compares two strings using Ordial comparison mode.
int LastIndexOfAny(const ArrayPtr< char_t > &anyOf, int32_t startindex, int32_t count) const
Looks for any of passed characters through substring backwardly. Compares last string character to al...
String & operator+=(uint32_t value)
Concatenation assignment operator.
ArrayPtr< String > Split(const String &separator, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by substring.
String(const ArrayPtr< char16_t > &arr)
Converts whole character array to string.
static const String Empty
Empty string.
Definition: string.h:894
String & operator+=(int16_t value)
Concatenation assignment operator.
ArrayPtr< String > Split(const String &separator, int count, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by substring.
String(const T &value, typename std::enable_if< std::is_same< T, std::nullptr_t >::value >::type *=nullptr)
Nullptr constructor. Declared as template to resolve priorities with other template constructors.
Definition: string.h:202
static String FromUtf8(const uint8_t *utf8)
Creates String from utf8 string.
String ToUpperInvariant() const
Converts all string's characters to upper case using invariant culture.
static String Copy(const String &str)
Creates string copy.
Definition: string.h:1043
static const String Null
Null string.
Definition: string.h:896
String(const char16_t *str, int length)
Constructs string from character string pointer and explicit length.
bool operator==(std::nullptr_t) const
Checks if string is null. Applies same logic as IsNull() call.
String operator+(uint32_t i) const
Adds unsigned integer value string representation to the end of the string.
static bool Equals(const String &strA, const String &strB, System::StringComparison comparison_type)
Equal-compares two strings.
String(const wchar_t ch, int count=1)
Fill constructor. Conversion from wchar_t is time-consuming on some platforms, so no implicit convers...
String(const char16_t ch, int count)
Fill constructor.
String & operator+=(uint16_t value)
Concatenation assignment operator.
static int Compare(const String &strA, int indexA, const String &strB, int indexB, int length, bool ignoreCase=false)
Less-equal-greater-compares two substrings.
static bool IsNullOrEmpty(const String &str)
Checks if passed string is null or empty.
bool operator!=(std::nullptr_t) const
Checks if string is not null. Applies same logic as IsNull() call.
static int Compare(const String &strA, int indexA, const String &strB, int indexB, int length, System::StringComparison comparison_type)
Less-equal-greater-compares two strings.
String operator+(int i) const
Adds integer value string representation to the end of the string.
ArrayPtr< String > Split(char_t separator, int32_t count, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by character.
String operator+(T arg) const
Adds boolean value string representation to the end of the string.
Definition: string.h:386
static int Compare(const String &strA, const String &strB, System::StringComparison comparison_type)
Less-equal-greater-compares two strings.
bool EndsWith(const String &value, System::StringComparison comparisonType) const
Checks if string ends with specified substring.
String Substring(int32_t startIndex) const
Extracts substring.
String operator+(const T &arg) const
String concatenation with string literal or character string pointer.
Definition: string.h:338
String TrimEnd(char_t ch) const
Removes all occurrences of passed character from end of the string.
const UChar * begin() const
Returns pointer to the beginning of actual string buffer. Never reallocates anything....
ArrayPtr< String > Split(const ArrayPtr< String > &separators, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by substring.
int LastIndexOf(const String &str, int startIndex=INT32_MAX) const
Substring backward lookup.
std::wstring ToWCS() const
Converts string to std::wstring.
int FastToAscii(char buffer[], int buffer_size) const
Tries to convert a String to an ASCII string.
int IndexOf(const String &value, int startIndex, int count, System::StringComparison comparisonType) const
Substring forward lookup.
String TrimStart(char_t ch) const
Removes all occurrences of passed character from beginning of the string.
String Replace(char_t oldValue, char_t newValue) const
Replaces all occurrences of character in the string.
String ToUpper(const SharedPtr< System::Globalization::CultureInfo > &cultureInfo) const
Converts all string's characters to upper case using specific culture.
String(const T &value, typename std::enable_if< IsStringPointer< T, char16_t >::value >::type *=nullptr)
Constructs string based on character string pointer. Treats pointed string as null-terminated,...
Definition: string.h:153
String operator+(double d) const
Adds floating point value string representation to the end of the string.
String(const ArrayPtr< char16_t > &arr, int offset, int len)
Converts character array subrange to string. If parameters are out of array bounds,...
String ToUpper() const
Converts all string's characters to upper case.
int IndexOf(char_t c, int startIndex, int count) const
Character forward lookup in substring.
void CopyTo(int sourceIndex, const ArrayPtr< char_t > &destination, int destinationIndex, int count) const
Copies string characters into existing array elements. No resize is being done.
static int Compare(const String &strA, const String &strB, bool ignoreCase=false)
Less-equal-greater-compares two strings.
int LastIndexOfAny(const ArrayPtr< char_t > &anyOf, int32_t startindex) const
Looks for any of passed characters through substring backwardly. Compares last string character to al...
String(const char16_t *str, int start, int length)
Constructs string from character string pointer from starting position using length.
int CompareTo(const String &str) const
Compares two strings in 'less-equals-more' style. Uses current culture.
String PadLeft(int totalWidth, char_t c=u' ') const
Adds padding on the left of original string.
String TrimStart(const ArrayPtr< char_t > &anyOf) const
Removes all occurrences of passed characters from beginning of the string.
bool IsAsciiString() const
Indicates if a String contains ASCII symbols only.
ArrayPtr< String > Split(const ArrayPtr< char_t > &separators, int32_t count, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by one of characters specified.
static String Concat(const String &str0, const String &str1, const String &str2, const String &str3)
Concatenates strings.
String operator+(const String &str) const
String concatenation operator.
bool IsNullOrEmpty() const
Checks if string is empty or is considered null.
static String Concat(const String &str0, const String &str1, const String &str2)
Concatenates strings.
static String Join(const String &separator, const System::Details::ArrayView< String > &parts, int startIndex=0, int count=-1)
Joins array using string as separator.
String & operator+=(double value)
Concatenation assignment operator.
static int CompareOrdinal(const String &strA, const String &strB)
Less-equal-greater-compares two strings using ordinal mode.
String(const std::string &utf8str)
Creates String from std::string string presented in format UTF-8.
std::string ToUtf8String() const
Converts string to std::string. Uses UTF-8 encoding.
static String FromUtf8(const char *utf8, int len)
Creates String from utf8 string.
bool StartsWith(const String &value, System::StringComparison comparisonType) const
Checks if string begins with specified substring.
static bool IsNullOrWhiteSpace(const String &str)
Indicates whether a specified string is null, empty, or consists only of white-space characters.
bool operator!=(const String &str) const
Non-equality comparison operator.
static String Join(const String &separator, const ArrayPtr< SharedPtr< Object > > &parts)
Joins array using string as separator.
String operator+(char_t x) const
Adds character to the end of the string.
String TrimEnd() const
Removes all whitespace characters from end of the string.
ArrayPtr< String > Split(const ArrayPtr< char_t > &separators, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by one of characters specified.
bool Equals(const String &str, System::StringComparison comparison_type) const
String equality comparison. Several modes provided by StringComparison enumeration are supported.
const UChar * end() const
Returns pointer to the end of actual string buffer. Never reallocates anything. Doesn't guarantee buf...
String ToString(const SharedPtr< IFormatProvider > &) const
Wrapper for handling String class in contexts where ToString() is being called on value type objects.
Definition: string.h:497
const UChar * u_str() const
Returns ICU-styled null-terminated buffer. May reallocate the string.
ArrayPtr< String > Split(const ArrayPtr< String > &separators, int count, StringSplitOptions opt=StringSplitOptions::None) const
Splits string by substring. Currently, only supports separators array of zero or one elements.
static String Concat(const String &str0, const String &str1)
Concatenates strings.
String ToString() const
Wrapper for handling String class in contexts where ToString() is being called on value type objects.
Definition: string.h:494
String Trim() const
Removes all whitespace characters from both beginning and end of the string.
static int CompareOrdinal(const String &strA, int indexA, const String &strB, int indexB, int length)
Less-equal-greater-compares two strings using ordinal mode.
String operator+(int64_t v) const
Adds integer value string representation to the end of the string.
int IndexOf(char_t c, int startIndex=0) const
Character forward lookup.
ArrayPtr< uint8_t > ToByteArray(int32_t startIndex=0, int32_t length=INT32_MAX, bool LE=true) const
Converts string or substring to array of bytes.
std::u32string ToU32Str() const
Converts string to std::u32string.
int IndexOfAny(const ArrayPtr< char_t > &anyOf, int32_t startindex) const
Looks for any of passed characters through substring. Compares first string character to all characte...
String TrimEnd(const ArrayPtr< char_t > &anyOf) const
Removes all occurrences of passed characters from end of the string.
static String FromUtf32(const uint32_t *utf32, int32_t length)
Creates String from utf32 string.
String(T &value, typename std::enable_if< IsStringLiteral< T, char >::value >::type *=nullptr)
Constructs string based on string literal. Considers literal a null-terminated string in UTF8,...
Definition: string.h:162
int IndexOf(const String &str, int startIndex, System::StringComparison comparison_type) const
Substring forward lookup.
static String FromWCS(const std::wstring &wcs)
Creates String from widestring.
bool IsEmpty() const
Checks if string is both non-null and empty.
int IndexOfAny(const ArrayPtr< char_t > &anyOf, int32_t startindex, int32_t count) const
Looks for any of passed characters through substring. Compares first string character to all characte...
String & operator+=(uint64_t value)
Concatenation assignment operator.
String Insert(int startIndex, const String &value) const
Inserts substring at specified position.
bool Contains(const String &str) const
Checks if str is a substring of current string.
static String FromAscii(const char *asciiStr)
Creates String from ASCII string.
String & SetCharAt(int index, char_t ch)
Sets character at specified position.
int LastIndexOf(char_t value) const
Character backward lookup.
ArrayPtr< String > Split(char_t separator=u' ', StringSplitOptions opt=StringSplitOptions::None) const
Splits string by character.
bool StartsWith(const String &value, bool ignoreCase, const SharedPtr< System::Globalization::CultureInfo > &culture=nullptr) const
Checks if string begins with specified substring.
static String FromUtf8(const char *utf8)
Creates String from utf8 string.
bool IsNull() const
Checks if string is considered null. String is null and only if it is constructed via String() constr...
Definition: string.h:280
std::reverse_iterator< const char16_t * > reverse_iterator
Reverse iterator type.
Definition: string.h:138
String(T &value, typename std::enable_if< IsStringLiteral< T, wchar_t >::value >::type *=nullptr)
Constructs string based on widestring literal. Considers literal a null-terminated string,...
Definition: string.h:213
String Replace(const String &oldValue, const String &newValue) const
Replaces all occurrences of lookup in this string.
String()
Default constructor. Creates string object which is considered null.
String(const codeporting_icu::UnicodeString &str)
Wraps UnicodeString into String.
static String Concat(const ArrayPtr< String > &parts)
Concatenates strings.
String Normalize(System::Text::NormalizationForm form) const
Normalizes unicode string using normalization form specified.
String Trim(const ArrayPtr< char_t > &anyOf) const
Removes all occurrences of passed characters from both beginning and end of the string.
static int Compare(const String &strA, const String &strB, bool ignoreCase, const SharedPtr< System::Globalization::CultureInfo > &ci)
Less-equal-greater-compares two strings.
int LastIndexOf(const String &value, int startIndex, int count, StringComparison comparisonType) const
Substring backward lookup.
String(T &value, typename std::enable_if< IsStringLiteral< T, char16_t >::value >::type *=nullptr)
Constructs string based on string literal. Considers literal a null-terminated string,...
Definition: string.h:146
std::string ToAsciiString() const
Converts string to std::string. Uses ASCII encoding.
int LastIndexOf(char_t value, int32_t startIndex) const
Character backward lookup.
Regular expression that follows C#-like syntax. Objects of this class should only be allocated using ...
Definition: regex.h:30
Buffer to accumulate string part by part. This type can be allocated either in stack as value type or...
Definition: string_builder.h:17
Represents a particular type and provides information about it.
Definition: type_info.h:109
@ Text
Defines color adjustment information for text.
NormalizationForm
Defines how to normalize Unicode string.
Definition: normalization_form.h:9
Definition: db_command.h:9
void PrintTo(DateTime value, std::ostream *stream)
Prints value to ostream. Mostly used for debug.
bool operator!=(ArraySegment< T > a, ArraySegment< T > b)
Definition: array_segment.h:157
Decimal operator+(const T &x, const Decimal &d)
Returns a new instance of Decimal class that represents a value that is a sum of the specified value ...
Definition: decimal.h:542
std::istream & operator>>(std::istream &in, String &str)
Gets a string from the input streamusing UTF-8 encoding.
StringComparison
Defines string comparison style.
Definition: string_comparison.h:13
StringSplitOptions
Determines string splitting behavior.
Definition: string.h:54
@ None
Keep empty strings when splitting string.
@ RemoveEmptyEntries
Discard empty strings when splitting string.
std::ostream & operator<<(std::ostream &stream, DateTime date_time)
Insert data into the stream using UTF-8 encoding.
Definition: date_time.h:729
bool operator==(ArraySegment< T > a, ArraySegment< T > b)
Definition: array_segment.h:151
Template magic to deduce cast results.
Definition: object.h:385
SmartPtr< TTo > type
An alias for a pointer to an instance of TTo.
Definition: object.h:387
Template magic to check if a type is a sequence of string characters.
Definition: string.h:68
Template magic to check if a type is a string literal.
Definition: string.h:82
Template magic to check if a type is a pointer to character string.
Definition: string.h:75