20 #include <string_view>
26 template<
class char_t,
class traits_t =
string_traits::traits<
char_t>>
32 template<
class char_t>
33 using ostream = std::basic_ostream<char_t>;
35 template<
class char_t>
36 using istream = std::basic_istream<char_t>;
42 template<
class char_t,
class traits_t>
62 template<
class char_t,
class traits_t>
65 template<
class _
char_t,
class _traits_t>
66 friend qx::details::istream<_char_t>& ::operator>>(
67 qx::details::istream<_char_t>& is,
71 using traits_type = traits_t;
72 using value_type =
typename traits_type::value_type;
73 using pointer =
typename traits_type::pointer;
74 using const_pointer =
typename traits_type::const_pointer;
75 using reference =
typename traits_type::reference;
76 using const_reference =
typename traits_type::const_reference;
77 using difference_type =
typename traits_type::difference_type;
78 using size_type =
typename traits_type::size_type;
79 using string_view = std::basic_string_view<value_type>;
80 using sstream_type = std::basic_stringstream<value_type>;
81 using views = std::vector<string_view>;
82 template<
class... args_t>
83 using format_string_type =
typename traits_type::template format_string<std::type_identity_t<args_t>...>;
85 static constexpr size_type npos = std::numeric_limits<size_type>::max();
97 basic_string(size_type nSymbols, value_type chSymbol) noexcept;
104 basic_string(const_pointer pszSource, size_type nSymbols) noexcept;
130 template<
class fwd_it_t>
131 basic_string(fwd_it_t itFirst, fwd_it_t itLast) noexcept;
138 template<range_of_t_c<
char_t>
string_t>
148 void assign(size_type nSymbols, value_type chSymbol) noexcept;
155 void assign(const_pointer pszSource, size_type nSymbols) noexcept;
161 void assign(const_pointer pszSource) noexcept;
181 template<
class fwd_it_t>
182 void assign(fwd_it_t itFirst, fwd_it_t itLast) noexcept;
189 template<range_of_t_c<
char_t>
string_t>
190 void assign(
const string_t& str) noexcept;
199 template<
class... args_t>
200 requires format_acceptable_args<char_t, args_t...>
201 void format(format_string_type<args_t...> sFormat,
const args_t&... args);
211 template<
class... args_t>
212 requires format_acceptable_args<char_t, args_t...>
222 template<
class... args_t>
223 requires format_acceptable_args<char_t, args_t...>
224 void append_format(format_string_type<args_t...> sFormat,
const args_t&... args);
233 template<
class... args_t>
234 requires format_acceptable_args<char_t, args_t...>
235 void vformat(string_view svFormat,
const args_t&... args);
245 template<
class... args_t>
246 requires format_acceptable_args<char_t, args_t...>
256 template<
class... args_t>
257 requires format_acceptable_args<char_t, args_t...>
271 size_type
reserve(size_type nCapacity) noexcept;
281 void free() noexcept;
289 string_view
substr(size_type nPos, size_type nSymbols = npos) const noexcept;
305 value_type
front() const noexcept;
311 value_type
back() const noexcept;
318 size_type
length() const noexcept;
324 const_pointer
c_str() const noexcept;
330 size_type
capacity() const noexcept;
336 static constexpr size_type
max_size() noexcept;
350 std::optional<to_t>
to(const_pointer pszFormat =
nullptr) const noexcept;
359 size_type
copy(pointer pDest, size_type nCount, size_type nPos = 0) const noexcept;
366 template<class from_t>
367 void from(const from_t& data);
375 template<class from_t>
382 void append(value_type chSymbol) noexcept;
389 void append(const_pointer pszStr, size_type nStrSize = npos) noexcept;
403 template<class fwd_it_t>
404 void append(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
411 template<range_of_t_c<char_t> string_t>
412 void append(const string_t& sStr) noexcept;
420 size_type
insert(size_type nPos, value_type chSymbol) noexcept;
429 size_type
insert(size_type nPos, const_pointer pszWhat, size_type nSymbols = npos) noexcept;
447 template<class fwd_it_t>
448 size_type
insert(size_type nPos, fwd_it_t itWhatBegin, fwd_it_t itWhatEnd) noexcept;
457 template<range_of_t_c<char_t> string_t>
458 size_type
insert(size_type nPos, string_t sWhat) noexcept;
475 size_type
insert(
const_iterator itPos, const_pointer pszWhat, size_type nSymbols = npos) noexcept;
493 template<class fwd_it_t>
503 template<range_of_t_c<char_t> string_t>
510 void push_back(value_type chSymbol) noexcept;
516 void push_front(value_type chSymbol) noexcept;
535 void erase(size_type nPos) noexcept;
542 void erase(size_type nPos, size_type nSymbols) noexcept;
567 size_type
trim_left(value_type chSymbol) noexcept;
574 size_type
trim_left(const_pointer pszStr) noexcept;
582 size_type
trim_left(const_pointer pszStr, size_type nStrSize) noexcept;
598 template<class fwd_it_t>
599 size_type
trim_left(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
607 template<range_of_t_c<char_t> string_t>
608 size_type
trim_left(const string_t& sStr) noexcept;
621 size_type
trim_right(value_type chSymbol) noexcept;
628 size_type
trim_right(const_pointer pszStr) noexcept;
636 size_type
trim_right(const_pointer pszStr, size_type nStrSize) noexcept;
652 template<class fwd_it_t>
653 size_type
trim_right(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
661 template<range_of_t_c<char_t> string_t>
662 size_type
trim_right(const string_t& sStr) noexcept;
668 size_type
trim() noexcept;
675 size_type
trim(value_type chSymbol) noexcept;
682 size_type
trim(const_pointer pszStr) noexcept;
690 size_type
trim(const_pointer pszStr, size_type nStrSize) noexcept;
706 template<class fwd_it_t>
707 size_type
trim(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
715 template<range_of_t_c<char_t> string_t>
716 size_type
trim(const string_t& sStr) noexcept;
725 size_type
remove(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) noexcept;
736 const_pointer pszStr,
737 size_type nBegin = 0,
738 size_type nEnd = npos,
739 size_type nStrSize = npos) noexcept;
748 size_type
remove(const
basic_string& sStr, size_type nBegin = 0, size_type nEnd = npos) noexcept;
759 template<class fwd_it_t>
760 size_type
remove(fwd_it_t itBegin, fwd_it_t itEnd, size_type nBegin = 0, size_type nEnd = npos) noexcept;
770 template<range_of_t_c<char_t> string_t>
771 size_type
remove(const string_t& sStr, size_type nBegin = 0, size_type nEnd = npos) noexcept;
786 bool remove_prefix(const_pointer pszStr, size_type nStrSize = npos) noexcept;
802 template<class fwd_it_t>
803 bool remove_prefix(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
811 template<range_of_t_c<char_t> string_t>
827 bool remove_suffix(const_pointer pszStr, size_type nStrSize = npos) noexcept;
843 template<class fwd_it_t>
844 bool remove_suffix(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
852 template<range_of_t_c<char_t> string_t>
862 size_type
remove_all(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) noexcept;
873 const_pointer pszStr,
874 size_type nBegin = 0,
875 size_type nEnd = npos,
876 size_type nStrSize = npos) noexcept;
896 template<class fwd_it_t>
897 size_type
remove_all(fwd_it_t itFirst, fwd_it_t itLast, size_type nBegin = 0, size_type nEnd = npos) noexcept;
907 template<range_of_t_c<char_t> string_t>
908 size_type
remove_all(const string_t& sStr, size_type nBegin = 0, size_type nEnd = npos) noexcept;
920 template<class find_string_t, class replace_string_t>
922 const find_string_t& sFind,
923 const replace_string_t& sReplace,
924 size_type nBegin = 0,
925 size_type nEnd = npos) noexcept;
937 template<class find_string_t, class replace_string_t>
939 const find_string_t& sFind,
940 const replace_string_t& sReplace,
941 size_type nBegin = 0,
942 size_type nEnd = npos) noexcept;
953 int compare(value_type chSymbol) const noexcept;
964 int compare(const_pointer pszStr) const noexcept;
976 int compare(const_pointer pStr, size_type nStrSize) const noexcept;
1000 template<class fwd_it_t>
1001 int compare(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1013 template<range_of_t_c<char_t> string_t>
1014 int compare(const string_t& sStr) const noexcept;
1023 size_type
find(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) const noexcept;
1033 size_type
find(const_pointer pszWhat, size_type nBegin = 0, size_type nWhatSize = npos, size_type nEnd = npos)
1043 size_type
find(const
basic_string& sWhat, size_type nBegin = 0, size_type nEnd = npos) const noexcept;
1054 template<class fwd_it_t>
1055 size_type
find(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nBegin = 0, size_type nEnd = npos)
1066 template<range_of_t_c<char_t> string_t>
1067 size_type
find(string_t sWhat, size_type nBegin = 0, size_type nEnd = npos) const noexcept;
1077 size_type
rfind(value_type chSymbol, size_type nBegin = npos, size_type nEnd = 0) const noexcept;
1088 size_type
rfind(const_pointer pszWhat, size_type nBegin = npos, size_type nWhatSize = npos, size_type nEnd = 0)
1099 size_type
rfind(const
basic_string& sWhat, size_type nBegin = npos, size_type nEnd = 0) const noexcept;
1111 template<class fwd_it_t>
1112 size_type
rfind(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nBegin = npos, size_type nEnd = 0)
1124 template<range_of_t_c<char_t> string_t>
1125 size_type
rfind(string_t sWhat, size_type nBegin = npos, size_type nEnd = 0) const noexcept;
1133 size_type
find_first_of(value_type chSymbol, size_type nBegin = 0) const noexcept;
1142 size_type
find_first_of(const_pointer pszWhat, size_type nBegin, size_type nWhatSize) const noexcept;
1150 size_type
find_first_of(const_pointer pszWhat, size_type nBegin = 0) const noexcept;
1168 template<class fwd_it_t>
1169 size_type
find_first_of(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nBegin = 0) const noexcept;
1178 template<range_of_t_c<char_t> string_t>
1179 size_type
find_first_of(string_t sWhat, size_type nBegin = 0) const noexcept;
1187 size_type
find_last_of(value_type chSymbol, size_type nEnd = 0) const noexcept;
1196 size_type
find_last_of(const_pointer pszWhat, size_type nEnd, size_type nWhatSize) const noexcept;
1204 size_type
find_last_of(const_pointer pszWhat, size_type nEnd = 0) const noexcept;
1222 template<class fwd_it_t>
1223 size_type
find_last_of(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nEnd = 0) const noexcept;
1232 template<range_of_t_c<char_t> string_t>
1233 size_type
find_last_of(string_t sWhat, size_type nEnd = 0) const noexcept;
1241 size_type
find_first_not_of(value_type chSymbol, size_type nBegin = 0) const noexcept;
1250 size_type
find_first_not_of(const_pointer pszWhat, size_type nBegin, size_type nWhatSize) const noexcept;
1258 size_type
find_first_not_of(const_pointer pszWhat, size_type nBegin = 0) const noexcept;
1276 template<class fwd_it_t>
1277 size_type
find_first_not_of(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nBegin = 0) const noexcept;
1286 template<range_of_t_c<char_t> string_t>
1287 size_type
find_first_not_of(string_t sWhat, size_type nBegin = 0) const noexcept;
1295 size_type
find_last_not_of(value_type chSymbol, size_type nEnd = 0) const noexcept;
1304 size_type
find_last_not_of(const_pointer pszWhat, size_type nEnd, size_type nWhatSize) const noexcept;
1312 size_type
find_last_not_of(const_pointer pszWhat, size_type nEnd = 0) const noexcept;
1330 template<class fwd_it_t>
1331 size_type
find_last_not_of(fwd_it_t itWhatBegin, fwd_it_t itWhatEnd, size_type nEnd = 0) const noexcept;
1340 template<range_of_t_c<char_t> string_t>
1341 size_type
find_last_not_of(string_t sWhat, size_type nEnd = 0) const noexcept;
1348 views
split(const value_type chSeparator) const noexcept;
1356 views
split(const_pointer pszSeparator, size_type nSepLen = npos) const noexcept;
1372 template<class fwd_it_t>
1373 views
split(fwd_it_t itSepFirst, fwd_it_t itSepLast) const noexcept;
1381 template<range_of_t_c<char_t> string_t>
1382 views
split(const string_t& sSeparator) const noexcept;
1389 bool starts_with(value_type chSymbol) const noexcept;
1397 bool starts_with(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1413 template<class fwd_it_t>
1414 bool starts_with(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1422 template<range_of_t_c<char_t> string_t>
1423 bool starts_with(const string_t& sStr) const noexcept;
1430 bool ends_with(value_type chSymbol) const noexcept;
1438 bool ends_with(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1454 template<class fwd_it_t>
1455 bool ends_with(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1463 template<range_of_t_c<char_t> string_t>
1464 bool ends_with(const string_t& sStr) const noexcept;
1472 bool contains(value_type chSymbol) const noexcept;
1481 bool contains(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1499 template<class fwd_it_t>
1500 bool contains(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1509 template<range_of_t_c<char_t> string_t>
1510 bool contains(const string_t& sStr) const noexcept;
1512 basic_string& operator=(const_pointer pszSource) noexcept;
1515 template<range_of_t_c<char_t> string_t>
1516 basic_string& operator=(const string_t& sStr) noexcept;
1518 basic_string& operator+=(value_type chSymbol) noexcept;
1519 basic_string& operator+=(const_pointer pszSource) noexcept;
1521 template<range_of_t_c<char_t> string_t>
1522 basic_string& operator+=(const string_t& sStr) noexcept;
1524 bool operator==(value_type chSymbol) const noexcept;
1525 bool operator==(const_pointer pszSource) const noexcept;
1526 bool operator==(const
basic_string& sStr) const noexcept;
1527 template<range_of_t_c<char_t> string_t>
1528 bool operator==(const string_t& sStr) const noexcept;
1530 bool operator!=(value_type chSymbol) const noexcept;
1531 bool operator!=(const_pointer pszSource) const noexcept;
1532 bool operator!=(const
basic_string& sStr) const noexcept;
1533 template<range_of_t_c<char_t> string_t>
1534 bool operator!=(const string_t& sStr) const noexcept;
1536 bool operator<(value_type chSymbol) const noexcept;
1537 bool operator<(const_pointer pszSource) const noexcept;
1538 bool operator<(const
basic_string& sStr) const noexcept;
1539 template<range_of_t_c<char_t> string_t>
1540 bool operator<(const string_t& sStr) const noexcept;
1542 bool operator<=(value_type chSymbol) const noexcept;
1543 bool operator<=(const_pointer pszSource) const noexcept;
1544 bool operator<=(const
basic_string& sStr) const noexcept;
1545 template<range_of_t_c<char_t> string_t>
1546 bool operator<=(const string_t& sStr) const noexcept;
1548 bool operator>(value_type chSymbol) const noexcept;
1549 bool operator>(const_pointer pszSource) const noexcept;
1550 bool operator>(const
basic_string& sStr) const noexcept;
1551 template<range_of_t_c<char_t> string_t>
1552 bool operator>(const string_t& sStr) const noexcept;
1554 bool operator>=(value_type chSymbol) const noexcept;
1555 bool operator>=(const_pointer pszSource) const noexcept;
1556 bool operator>=(const
basic_string& sStr) const noexcept;
1557 template<range_of_t_c<char_t> string_t>
1558 bool operator>=(const string_t& sStr) const noexcept;
1560 reference operator[](size_type nSymbol) noexcept;
1561 const_reference operator[](size_type nSymbol) const noexcept;
1563 operator string_view() const noexcept;
1565 explicit operator
bool() const noexcept;
1575 bool _resize(size_type nSymbols, string_resize_type eType = string_resize_type::common) noexcept;
1583 template<class searcher_t>
1584 size_type _trim_left(const searcher_t& searcher) noexcept;
1592 template<class searcher_t>
1593 size_type _trim_right(const searcher_t& searcher) noexcept;
1601 template<class searcher_t>
1602 size_type _trim(const searcher_t& searcher) noexcept;
1612 template<class comparator_t>
1613 size_type _find(size_type nBegin, size_type nEnd, const comparator_t& comparator) const noexcept;
1623 template<class comparator_t>
1624 size_type _rfind(size_type nBegin, size_type nEnd, const comparator_t& comparator) const noexcept;
1636 template<class incrementer_t, class fwd_it_t>
1637 size_type _find_first_of(fwd_it_t itBegin, fwd_it_t itEnd, size_type nBegin, const incrementer_t& incrementer)
1650 template<class incrementer_t, class fwd_it_t>
1651 size_type _find_last_of(fwd_it_t itBegin, fwd_it_t itEnd, size_type nEnd, const incrementer_t& incrementer)
1664 template<class incrementer_t, class fwd_it_t>
1665 size_type _find_first_not_of(fwd_it_t itBegin, fwd_it_t itEnd, size_type nBegin, const incrementer_t& incrementer)
1678 template<class incrementer_t, class fwd_it_t>
1679 size_type _find_last_not_of(fwd_it_t itBegin, fwd_it_t itEnd, size_type nEnd, const incrementer_t& incrementer)
1692 #include <qx/containers/string/string.inl>
void push_back(value_type chSymbol) noexcept
Insert char in the end of the string.
void erase(iterator itFirst, iterator itLast) noexcept
Erase substring.
size_type find(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) const noexcept
Find substring.
bool remove_prefix(value_type chSymbol) noexcept
Remove string prefix if matches.
requires format_acceptable_args< char_t, args_t... > void append_format(format_string_type< args_t... > sFormat, const args_t &... args)
Append the formatted string to the current one.
size_type remove_all(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) noexcept
Remove all occurrences of a substring in a string.
std::optional< to_t > to(const_pointer pszFormat=nullptr) const noexcept
Convert string to specified type.
int compare(value_type chSymbol) const noexcept
Performs a binary comparison of the characters.
requires format_acceptable_args< char_t, args_t... > void append_vformat(string_view svFormat, const args_t &... args)
Append the formatted string to the current one.
size_type find_last_of(value_type chSymbol, size_type nEnd=0) const noexcept
Find last position of character.
requires static format_acceptable_args< char_t, args_t... > basic_string static_vformat(string_view svFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
void push_front(value_type chSymbol) noexcept
Insert char in the beginning of the string.
size_type capacity() const noexcept
Get allocated memory size (including null terminator)
value_type pop_back() noexcept
Erase last char and return it.
size_type copy(pointer pDest, size_type nCount, size_type nPos=0) const noexcept
Copies a substring [nPos, nPos + nCount) to character string pointed to by pDest.
views split(const value_type chSeparator) const noexcept
Split string by separator.
size_type rfind(value_type chSymbol, size_type nBegin=npos, size_type nEnd=0) const noexcept
Find substring (reverse direction)
size_type length() const noexcept
Get string length.
void free() noexcept
Clear string and free allocated memory.
void from(const from_t &data)
Construct string from custom type.
size_type trim_right() noexcept
Trim the string to the right (whitespace characters)
void assign(size_type nSymbols, value_type chSymbol) noexcept
Assign by filling.
size_type replace_all(const find_string_t &sFind, const replace_string_t &sReplace, size_type nBegin=0, size_type nEnd=npos) noexcept
Replace all occurrences of sFind with sReplace.
bool ends_with(value_type chSymbol) const noexcept
Check if current string ends with char.
void swap(basic_string &sOther) noexcept
Swap this str and other.
value_type pop_front() noexcept
Erase first char and return it.
void append(value_type chSymbol) noexcept
Append char.
size_type trim() noexcept
Trim the string to the both sides (whitespace characters)
void to_upper() noexcept
Convert string to uppercase.
void shrink_to_fit() noexcept
Fit allocated size to string's actual size.
static basic_string static_from(const from_t &data)
Construct string from custom type and get it.
requires static format_acceptable_args< char_t, args_t... > basic_string static_format(format_string_type< args_t... > sFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
size_type replace(const find_string_t &sFind, const replace_string_t &sReplace, size_type nBegin=0, size_type nEnd=npos) noexcept
Replace first occurrence of sFind with sReplace.
size_type find_last_not_of(value_type chSymbol, size_type nEnd=0) const noexcept
Finds the last character not equal to chSymbol.
size_type trim_left() noexcept
Trim the string to the left (whitespace characters)
size_type reserve(size_type nCapacity) noexcept
Reserve memory for the string.
string_view substr(size_type nPos, size_type nSymbols=npos) const noexcept
Get substring.
void to_lower() noexcept
Convert string to lowercase.
requires format_acceptable_args< char_t, args_t... > void format(format_string_type< args_t... > sFormat, const args_t &... args)
Clear the string and format it with the format string and the args.
size_type insert(size_type nPos, value_type chSymbol) noexcept
Insert substring.
bool remove_suffix(value_type chSymbol) noexcept
Remove string suffix if matches.
const_pointer c_str() const noexcept
Get pointer to string zero terminated.
size_type remove(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) noexcept
Remove the first occurrence of a substring in a string.
static constexpr size_type max_size() noexcept
Get the theoretical maximum of string size.
bool starts_with(value_type chSymbol) const noexcept
Check if current string starts with char.
value_type front() const noexcept
Get first char of the string.
value_type back() const noexcept
Get last char of the string.
size_type find_first_of(value_type chSymbol, size_type nBegin=0) const noexcept
Find first position of character.
requires format_acceptable_args< char_t, args_t... > void vformat(string_view svFormat, const args_t &... args)
Clear the string and format it with the format string and the args.
size_type find_first_not_of(value_type chSymbol, size_type nBegin=0) const noexcept
Finds the first character not equal to chSymbol.
Const random access iterator type.
Non-const random access iterator type.
Check that tuple type contains T.