qxLib
string.h
Go to the documentation of this file.
1 /**
2 
3  @file string.h
4  @author Khrapov
5  @date 4.09.2019
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
16 #include <qx/meta/type_traits.h>
17 
18 #include <iostream>
19 #include <optional>
20 #include <string_view>
21 #include <vector>
22 
23 namespace qx
24 {
25 
26 template<class char_t, class traits_t = string_traits::traits<char_t>>
27 class basic_string;
28 
29 namespace details
30 {
31 
32 template<class char_t>
33 using ostream = std::basic_ostream<char_t>;
34 
35 template<class char_t>
36 using istream = std::basic_istream<char_t>;
37 
38 } // namespace details
39 
40 } // namespace qx
41 
42 template<class char_t, class traits_t>
43 qx::details::istream<char_t>& operator>>(qx::details::istream<char_t>& is, qx::basic_string<char_t, traits_t>& str);
44 
45 namespace qx
46 {
47 
48 /**
49 
50  @class basic_string
51  @brief String class
52  @details A class containing a null-terminated character sequence.
53  Supports small strings optimization, almost completely supports
54  the std::string interface (except for some overloads),
55  has many additional methods for convenient working with strings.
56  @tparam char_t - char type (char, wchar_t, etc)
57  @tparam traits_t - char traits. \see string_traits.h
58  @author Khrapov
59  @date 20.10.2019
60 
61 **/
62 template<class char_t, class traits_t>
64 {
65  template<class _char_t, class _traits_t>
66  friend qx::details::istream<_char_t>& ::operator>>(
67  qx::details::istream<_char_t>& is,
69 
70 public:
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>...>;
84 
85  static constexpr size_type npos = std::numeric_limits<size_type>::max();
86 
87  QX_IMPL_CONTAINER(basic_string);
88 
89 public:
90  basic_string() noexcept = default;
91 
92  /**
93  @brief basic_string object constructor
94  @param nSymbols - number of same chars
95  @param chSymbol - char to assign
96  **/
97  basic_string(size_type nSymbols, value_type chSymbol) noexcept;
98 
99  /**
100  @brief basic_string object constructor
101  @param pszSource - source string pointer
102  @param nSymbols - source string size
103  **/
104  basic_string(const_pointer pszSource, size_type nSymbols) noexcept;
105 
106  /**
107  @brief basic_string object constructor
108  @param pszSource - source string pointer
109  **/
110  basic_string(const_pointer pszSource) noexcept;
111 
112  /**
113  @brief basic_string object constructor
114  @param sAnother - another string rvalue ref
115  **/
116  basic_string(basic_string&& sAnother) noexcept;
117 
118  /**
119  @brief basic_string object constructor
120  @param sAnother - another string
121  **/
122  basic_string(const basic_string& sAnother) noexcept;
123 
124  /**
125  @brief basic_string object constructor
126  @tparam fwd_it_t - forward iterator type
127  @param itFirst - first source iterator
128  @param itLast - last source iterator
129  **/
130  template<class fwd_it_t>
131  basic_string(fwd_it_t itFirst, fwd_it_t itLast) noexcept;
132 
133  /**
134  @brief basic_string object constructor
135  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
136  @param sAnother - string-ish container
137  **/
138  template<range_of_t_c<char_t> string_t>
139  basic_string(const string_t& sAnother) noexcept;
140 
141  ~basic_string() noexcept;
142 
143  /**
144  @brief Assign by filling
145  @param nSymbols - number of same chars
146  @param chSymbol - char to assign
147  **/
148  void assign(size_type nSymbols, value_type chSymbol) noexcept;
149 
150  /**
151  @brief Assign by char sequence
152  @param pszSource - pointer to char sequence
153  @param nSymbols - num of chars
154  **/
155  void assign(const_pointer pszSource, size_type nSymbols) noexcept;
156 
157  /**
158  @brief Assign by psz
159  @param pszSource - pointer to zero terminated char sequence
160  **/
161  void assign(const_pointer pszSource) noexcept;
162 
163  /**
164  @brief Assign by moving from another string
165  @param sAnother - another string
166  **/
167  void assign(basic_string&& sAnother) noexcept;
168 
169  /**
170  @brief Assign by another string
171  @param sAnother - another string
172  **/
173  void assign(const basic_string& sAnother) noexcept;
174 
175  /**
176  @brief Assign by iterators
177  @tparam fwd_it_t - forward iterator type
178  @param itFirst - first iterator of source
179  @param itLast - last iterator of source
180  **/
181  template<class fwd_it_t>
182  void assign(fwd_it_t itFirst, fwd_it_t itLast) noexcept;
183 
184  /**
185  @brief Assign by char container
186  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
187  @param str - char container
188  **/
189  template<range_of_t_c<char_t> string_t>
190  void assign(const string_t& str) noexcept;
191 
192  /**
193  @brief Clear the string and format it with the format string and the args
194  @details Format string will be checked at compile time
195  @tparam args_t - template parameter pack type
196  @param sFormat - format string
197  @param args - format arguments
198  **/
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);
202 
203  /**
204  @brief Create a string by formatting it with the format string and the args
205  @details Format string will be checked at compile time
206  @tparam args_t - template parameter pack type
207  @param sFormat - format string
208  @param args - format arguments
209  @retval - formatted string
210  **/
211  template<class... args_t>
212  requires format_acceptable_args<char_t, args_t...>
213  static basic_string static_format(format_string_type<args_t...> sFormat, const args_t&... args);
214 
215  /**
216  @brief Append the formatted string to the current one
217  @details Format string will be checked at compile time
218  @tparam args_t - template parameter pack type
219  @param sFormat - format string
220  @param args - format arguments
221  **/
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);
225 
226  /**
227  @brief Clear the string and format it with the format string and the args
228  @details No compile time checks, method will throw is something is wrong with the format string
229  @tparam args_t - template parameter pack type
230  @param svFormat - format string
231  @param args - format arguments
232  **/
233  template<class... args_t>
234  requires format_acceptable_args<char_t, args_t...>
235  void vformat(string_view svFormat, const args_t&... args);
236 
237  /**
238  @brief Create a string by formatting it with the format string and the args
239  @details No compile time checks, method will throw is something is wrong with the format string
240  @tparam args_t - template parameter pack type
241  @param svFormat - format string
242  @param args - format arguments
243  @retval - formatted string
244  **/
245  template<class... args_t>
246  requires format_acceptable_args<char_t, args_t...>
247  static basic_string static_vformat(string_view svFormat, const args_t&... args);
248 
249  /**
250  @brief Append the formatted string to the current one
251  @details No compile time checks, method will throw is something is wrong with the format string
252  @tparam args_t - template parameter pack type
253  @param svFormat - format string
254  @param args - format arguments
255  **/
256  template<class... args_t>
257  requires format_acceptable_args<char_t, args_t...>
258  void append_vformat(string_view svFormat, const args_t&... args);
259 
260  /**
261  @brief Swap this str and other
262  @param sOther - other str
263  **/
264  void swap(basic_string& sOther) noexcept;
265 
266  /**
267  @brief Reserve memory for the string
268  @param nCapacity - required capacity
269  @retval - new string capacity
270  **/
271  size_type reserve(size_type nCapacity) noexcept;
272 
273  /**
274  @brief Fit allocated size to string's actual size
275  **/
276  void shrink_to_fit() noexcept;
277 
278  /**
279  @brief Clear string and free allocated memory
280  **/
281  void free() noexcept;
282 
283  /**
284  @brief Get substring
285  @param nPos - start index
286  @param nSymbols - string size (npos - to the end)
287  @retval - substring view
288  **/
289  string_view substr(size_type nPos, size_type nSymbols = npos) const noexcept;
290 
291  /**
292  @brief Convert string to lowercase
293  **/
294  void to_lower() noexcept;
295 
296  /**
297  @brief Convert string to uppercase
298  **/
299  void to_upper() noexcept;
300 
301  /**
302  @brief Get first char of the string
303  @retval - first char of the string
304  **/
305  value_type front() const noexcept;
306 
307  /**
308  @brief Get last char of the string
309  @retval - last char of the string
310  **/
311  value_type back() const noexcept;
312 
313  /**
314  @brief Get string length
315  @brief Same as size()
316  @retval - string length
317  **/
318  size_type length() const noexcept;
319 
320  /**
321  @brief Get pointer to string zero terminated
322  @retval - pointer to string zero terminated
323  **/
324  const_pointer c_str() const noexcept;
325 
326  /**
327  @brief Get allocated memory size (including null terminator)
328  @retval - allocated memory size
329  **/
330  size_type capacity() const noexcept;
331 
332  /**
333  @brief Get the theoretical maximum of string size
334  @retval - theoretical maximum of string size
335  **/
336  static constexpr size_type max_size() noexcept;
337 
338  /**
339  @brief Convert string to specified type
340  @warning This function currently uses unsafe scanf functions from the c library,
341  since the current implementation of the standard library
342  does not have an implementation of fmt::scan (https://github.com/fmtlib/fmt/blob/master/test/scan.h).
343  Status: https://github.com/cplusplus/papers/issues/493
344  This will be fixed in the future when possible.
345  @tparam to_t - type to convert
346  @param pszFormat - format string (according to https://en.cppreference.com/w/c/io/fscanf)
347  @retval - converted value or std::nullopt
348  **/
349  template<class to_t>
350  std::optional<to_t> to(const_pointer pszFormat = nullptr) const noexcept;
351 
352  /**
353  @brief Copies a substring [nPos, nPos + nCount) to character string pointed to by pDest
354  @param pDest - pointer to the destination character string
355  @param nCount - length of the substring
356  @param nPos - position of the first character to include
357  @retval - number of characters copied
358  **/
359  size_type copy(pointer pDest, size_type nCount, size_type nPos = 0) const noexcept;
360 
361  /**
362  @brief Construct string from custom type
363  @tparam from_t - type to convert from
364  @param data - data of type from_type
365  **/
366  template<class from_t>
367  void from(const from_t& data);
368 
369  /**
370  @brief Construct string from custom type and get it
371  @tparam from_t - type to convert from
372  @param data - data of type from_type
373  @retval - constructed string
374  **/
375  template<class from_t>
376  static basic_string static_from(const from_t& data);
377 
378  /**
379  @brief Append char
380  @param chSymbol - char to append
381  **/
382  void append(value_type chSymbol) noexcept;
383 
384  /**
385  @brief Append string
386  @param pszStr - source string
387  @param nStrSize - source string size
388  **/
389  void append(const_pointer pszStr, size_type nStrSize = npos) noexcept;
390 
391  /**
392  @brief Append string
393  @param sStr - source string
394  **/
395  void append(const basic_string& sStr) noexcept;
396 
397  /**
398  @brief Append string
399  @tparam fwd_it_t - forward iterator type
400  @param itBegin - other string begin iterator
401  @param itEnd - other end begin iterator
402  **/
403  template<class fwd_it_t>
404  void append(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
405 
406  /**
407  @brief Append string
408  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
409  @param sStr - source char container
410  **/
411  template<range_of_t_c<char_t> string_t>
412  void append(const string_t& sStr) noexcept;
413 
414  /**
415  @brief Insert substring
416  @param nPos - first char index
417  @param chSymbol - symbol to insert
418  @retval - pos of char after last char of inserted string or npos
419  **/
420  size_type insert(size_type nPos, value_type chSymbol) noexcept;
421 
422  /**
423  @brief Insert substring
424  @param nPos - first char index
425  @param pszWhat - source string
426  @param nSymbols - number of symbols to insert
427  @retval - pos of char after last char of inserted string or npos
428  **/
429  size_type insert(size_type nPos, const_pointer pszWhat, size_type nSymbols = npos) noexcept;
430 
431  /**
432  @brief Insert substring
433  @param nPos - first char index
434  @param sWhat - string to insert
435  @retval - pos of char after last char of inserted string or npos
436  **/
437  size_type insert(size_type nPos, const basic_string& sWhat) noexcept;
438 
439  /**
440  @brief Insert substring
441  @tparam fwd_it_t - forward iterator type
442  @param nPos - first char index
443  @param itWhatBegin - source first iterator
444  @param itWhatEnd - source last iterator
445  @retval - pos of char after last char of inserted string or npos
446  **/
447  template<class fwd_it_t>
448  size_type insert(size_type nPos, fwd_it_t itWhatBegin, fwd_it_t itWhatEnd) noexcept;
449 
450  /**
451  @brief Insert substring
452  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
453  @param nPos - first char index
454  @param sWhat - source string
455  @retval - pos of char after last char of inserted string or npos
456  **/
457  template<range_of_t_c<char_t> string_t>
458  size_type insert(size_type nPos, string_t sWhat) noexcept;
459 
460  /**
461  @brief Insert char
462  @param itPos - first char iterator
463  @param chSymbol - char to insert
464  @retval - pos of char after last char of inserted string or npos
465  **/
466  size_type insert(const_iterator itPos, value_type chSymbol) noexcept;
467 
468  /**
469  @brief Insert substring
470  @param itPos - first char iterator
471  @param pszWhat - source string
472  @param nSymbols - number of symbols to insert
473  @retval - pos of char after last char of inserted string or npos
474  **/
475  size_type insert(const_iterator itPos, const_pointer pszWhat, size_type nSymbols = npos) noexcept;
476 
477  /**
478  @brief Insert substring
479  @param itPos - first char iterator
480  @param sWhat - string to insert
481  @retval - pos of char after last char of inserted string or npos
482  **/
483  size_type insert(const_iterator itPos, const basic_string& sWhat) noexcept;
484 
485  /**
486  @brief Insert substring
487  @tparam fwd_it_t - forward iterator type
488  @param itPos - first char iterator
489  @param itWhatBegin - source string first iterator
490  @param itWhatEnd - source string last iterator
491  @retval - pos of char after last char of inserted string or npos
492  **/
493  template<class fwd_it_t>
494  size_type insert(const_iterator itPos, fwd_it_t itWhatBegin, fwd_it_t itWhatEnd) noexcept;
495 
496  /**
497  @brief Insert substring
498  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
499  @param itPos - first char iterator
500  @param sWhat - source string
501  @retval - pos of char after last char of inserted string or npos
502  **/
503  template<range_of_t_c<char_t> string_t>
504  size_type insert(const_iterator itPos, string_t sWhat) noexcept;
505 
506  /**
507  @brief Insert char in the end of the string
508  @param chSymbol - char to insert
509  **/
510  void push_back(value_type chSymbol) noexcept;
511 
512  /**
513  @brief Insert char in the beginning of the string
514  @param chSymbol - char to insert
515  **/
516  void push_front(value_type chSymbol) noexcept;
517 
518  /**
519  @brief Erase substring
520  @param itFirst - first substr char iterator
521  @param itLast - last substr char iterator (excluded)
522  **/
523  void erase(iterator itFirst, iterator itLast) noexcept;
524 
525  /**
526  @brief Erase on iterator
527  @param itPos - iterator where to erase
528  **/
529  void erase(iterator itPos) noexcept;
530 
531  /**
532  @brief Erase on position
533  @param nPos - index where to erase
534  **/
535  void erase(size_type nPos) noexcept;
536 
537  /**
538  @brief Erase substring
539  @param nPos - start position
540  @param nSymbols - number of symbols
541  **/
542  void erase(size_type nPos, size_type nSymbols) noexcept;
543 
544  /**
545  @brief Erase last char and return it
546  @retval - last char
547  **/
548  value_type pop_back() noexcept;
549 
550  /**
551  @brief Erase first char and return it
552  @retval - first char
553  **/
554  value_type pop_front() noexcept;
555 
556  /**
557  @brief Trim the string to the left (whitespace characters)
558  @retval - number of deleted symbols
559  **/
560  size_type trim_left() noexcept;
561 
562  /**
563  @brief Trim the string to the left
564  @param chSymbol - symbol to delete
565  @retval - number of deleted symbols
566  **/
567  size_type trim_left(value_type chSymbol) noexcept;
568 
569  /**
570  @brief Trim the string to the left
571  @param pszStr - string with symbols to delete
572  @retval - number of deleted symbols
573  **/
574  size_type trim_left(const_pointer pszStr) noexcept;
575 
576  /**
577  @brief Trim the string to the left
578  @param pszStr - string with symbols to delete
579  @param nStrSize - string size
580  @retval - number of deleted symbols
581  **/
582  size_type trim_left(const_pointer pszStr, size_type nStrSize) noexcept;
583 
584  /**
585  @brief Trim the string to the left
586  @param sStr - string with symbols to delete
587  @retval - number of deleted symbols
588  **/
589  size_type trim_left(const basic_string& sStr) noexcept;
590 
591  /**
592  @brief Trim the string to the left
593  @tparam fwd_it_t - forward iterator type
594  @param itBegin - begin it of string with symbols to delete
595  @param itEnd - begin it of string with symbols to delete
596  @retval - number of deleted symbols
597  **/
598  template<class fwd_it_t>
599  size_type trim_left(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
600 
601  /**
602  @brief Trim the string to the left
603  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
604  @param sStr - string with symbols to delete
605  @retval - number of deleted symbols
606  **/
607  template<range_of_t_c<char_t> string_t>
608  size_type trim_left(const string_t& sStr) noexcept;
609 
610  /**
611  @brief Trim the string to the right (whitespace characters)
612  @retval - number of deleted symbols
613  **/
614  size_type trim_right() noexcept;
615 
616  /**
617  @brief Trim the string to the right
618  @param chSymbol - symbol to delete
619  @retval - number of deleted symbols
620  **/
621  size_type trim_right(value_type chSymbol) noexcept;
622 
623  /**
624  @brief Trim the string to the right
625  @param pszStr - string with symbols to delete
626  @retval - number of deleted symbols
627  **/
628  size_type trim_right(const_pointer pszStr) noexcept;
629 
630  /**
631  @brief Trim the string to the right
632  @param pszStr - string with symbols to delete
633  @param nStrSize - string size
634  @retval - number of deleted symbols
635  **/
636  size_type trim_right(const_pointer pszStr, size_type nStrSize) noexcept;
637 
638  /**
639  @brief Trim the string to the right
640  @param sStr - string with symbols to delete
641  @retval - number of deleted symbols
642  **/
643  size_type trim_right(const basic_string& sStr) noexcept;
644 
645  /**
646  @brief Trim the string to the right
647  @tparam fwd_it_t - forward iterator type
648  @param itBegin - begin it of string with symbols to delete
649  @param itEnd - begin it of string with symbols to delete
650  @retval - number of deleted symbols
651  **/
652  template<class fwd_it_t>
653  size_type trim_right(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
654 
655  /**
656  @brief Trim the string to the right
657  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
658  @param sStr - string with symbols to delete
659  @retval - number of deleted symbols
660  **/
661  template<range_of_t_c<char_t> string_t>
662  size_type trim_right(const string_t& sStr) noexcept;
663 
664  /**
665  @brief Trim the string to the both sides (whitespace characters)
666  @retval - number of deleted symbols
667  **/
668  size_type trim() noexcept;
669 
670  /**
671  @brief Trim the string to the both sides
672  @param chSymbol - symbol to delete
673  @retval - number of deleted symbols
674  **/
675  size_type trim(value_type chSymbol) noexcept;
676 
677  /**
678  @brief Trim the string to the both sides
679  @param pszStr - string with symbols to delete
680  @retval - number of deleted symbols
681  **/
682  size_type trim(const_pointer pszStr) noexcept;
683 
684  /**
685  @brief Trim the string to the both sides
686  @param pszStr - string with symbols to delete
687  @param nStrSize - string size
688  @retval - number of deleted symbols
689  **/
690  size_type trim(const_pointer pszStr, size_type nStrSize) noexcept;
691 
692  /**
693  @brief Trim the string to the both sides
694  @param sStr - string with symbols to delete
695  @retval - number of deleted symbols
696  **/
697  size_type trim(const basic_string& sStr) noexcept;
698 
699  /**
700  @brief Trim the string to the both sides
701  @tparam fwd_it_t - forward iterator type
702  @param itBegin - begin it of string with symbols to delete
703  @param itEnd - begin it of string with symbols to delete
704  @retval - number of deleted symbols
705  **/
706  template<class fwd_it_t>
707  size_type trim(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
708 
709  /**
710  @brief Trim the string to the both sides
711  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
712  @param sStr - string with symbols to delete
713  @retval - number of deleted symbols
714  **/
715  template<range_of_t_c<char_t> string_t>
716  size_type trim(const string_t& sStr) noexcept;
717 
718  /**
719  @brief Remove the first occurrence of a substring in a string
720  @param chSymbol - char to remove
721  @param nBegin - start searching index
722  @param nEnd - end searching index
723  @retval - position where the first occurrence was or npos
724  **/
725  size_type remove(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) noexcept;
726 
727  /**
728  @brief Remove the first occurrence of a substring in a string
729  @param pszStr - c-string to remove
730  @param nBegin - start searching index
731  @param nEnd - end searching index
732  @param nStrSize - c-string size
733  @retval - position where the first occurrence was or npos
734  **/
735  size_type remove(
736  const_pointer pszStr,
737  size_type nBegin = 0,
738  size_type nEnd = npos,
739  size_type nStrSize = npos) noexcept;
740 
741  /**
742  @brief Remove the first occurrence of a substring in a string
743  @param sStr - string to remove
744  @param nBegin - start searching index
745  @param nEnd - end searching index
746  @retval - position where the first occurrence was or npos
747  **/
748  size_type remove(const basic_string& sStr, size_type nBegin = 0, size_type nEnd = npos) noexcept;
749 
750  /**
751  @brief Remove the first occurrence of a substring in a string
752  @tparam fwd_it_t - forward iterator type
753  @param itBegin - string begin iterator
754  @param itEnd - string end iterator
755  @param nBegin - start searching index
756  @param nEnd - end searching index
757  @retval - position where the first occurrence was or npos
758  **/
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;
761 
762  /**
763  @brief Remove the first occurrence of a substring in a string
764  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
765  @param sStr - string to remove
766  @param nBegin - start searching index
767  @param nEnd - end searching index
768  @retval - position where the first occurrence was or npos
769  **/
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;
772 
773  /**
774  @brief Remove string prefix if matches
775  @param chSymbol - char to remove
776  @retval - true if removed
777  **/
778  bool remove_prefix(value_type chSymbol) noexcept;
779 
780  /**
781  @brief Remove string prefix if matches
782  @param pszStr - string to remove
783  @param nStrSize - string size
784  @retval - true if removed
785  **/
786  bool remove_prefix(const_pointer pszStr, size_type nStrSize = npos) noexcept;
787 
788  /**
789  @brief Remove string prefix if matches
790  @param sStr - string to remove
791  @retval - true if removed
792  **/
793  bool remove_prefix(const basic_string& sStr) noexcept;
794 
795  /**
796  @brief Remove string prefix if matches
797  @tparam fwd_it_t - forward iterator type
798  @param itBegin - string to remove begin iterator
799  @param itEnd - string to remove end iterator
800  @retval - true if removed
801  **/
802  template<class fwd_it_t>
803  bool remove_prefix(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
804 
805  /**
806  @brief Remove string prefix if matches
807  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
808  @param sStr - string to remove
809  @retval - true if removed
810  **/
811  template<range_of_t_c<char_t> string_t>
812  bool remove_prefix(const string_t& sStr) noexcept;
813 
814  /**
815  @brief Remove string suffix if matches
816  @param chSymbol - char to remove
817  @retval - true if removed
818  **/
819  bool remove_suffix(value_type chSymbol) noexcept;
820 
821  /**
822  @brief Remove string suffix if matches
823  @param pszStr - string to remove
824  @param nStrSize - string size
825  @retval - true if removed
826  **/
827  bool remove_suffix(const_pointer pszStr, size_type nStrSize = npos) noexcept;
828 
829  /**
830  @brief Remove string suffix if matches
831  @param sStr - string to remove
832  @retval - true if removed
833  **/
834  bool remove_suffix(const basic_string& sStr) noexcept;
835 
836  /**
837  @brief Remove string suffix if matches
838  @tparam fwd_it_t - forward iterator type
839  @param itBegin - string to remove begin iterator
840  @param itEnd - string to remove end iterator
841  @retval - true if removed
842  **/
843  template<class fwd_it_t>
844  bool remove_suffix(fwd_it_t itBegin, fwd_it_t itEnd) noexcept;
845 
846  /**
847  @brief Remove string suffix if matches
848  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
849  @param sStr - string to remove
850  @retval - true if removed
851  **/
852  template<range_of_t_c<char_t> string_t>
853  bool remove_suffix(const string_t& sStr) noexcept;
854 
855  /**
856  @brief Remove all occurrences of a substring in a string
857  @param chSymbol - char to remove
858  @param nBegin - start searching index
859  @param nEnd - end searching index
860  @retval - number of deleted occurrences
861  **/
862  size_type remove_all(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) noexcept;
863 
864  /**
865  @brief Remove all occurrences of a substring in a string
866  @param pszStr - string to remove
867  @param nBegin - start searching index
868  @param nEnd - end searching index
869  @param nStrSize - string size
870  @retval - number of deleted occurrences
871  **/
872  size_type remove_all(
873  const_pointer pszStr,
874  size_type nBegin = 0,
875  size_type nEnd = npos,
876  size_type nStrSize = npos) noexcept;
877 
878  /**
879  @brief Remove all occurrences of a substring in a string
880  @param sStr - string to remove
881  @param nBegin - start searching index
882  @param nEnd - end searching index
883  @retval - number of deleted occurrences
884  **/
885  size_type remove_all(const basic_string& sStr, size_type nBegin = 0, size_type nEnd = npos) noexcept;
886 
887  /**
888  @brief Remove all occurrences of a substring in a string
889  @tparam fwd_it_t - forward iterator type
890  @param itFirst - string begin iterator
891  @param itLast - string end iterator
892  @param nBegin - start searching index
893  @param nEnd - end searching index
894  @retval - number of deleted occurrences
895  **/
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;
898 
899  /**
900  @brief Remove all occurrences of a substring in a string
901  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
902  @param sStr - string to remove
903  @param nBegin - start searching index
904  @param nEnd - end searching index
905  @retval - number of deleted occurrences
906  **/
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;
909 
910  /**
911  @brief Replace first occurrence of sFind with sReplace
912  @tparam find_string_t - find string type
913  @tparam replace_string_t - replace string type
914  @param sFind - string to find and replace
915  @param sReplace - string to replace with
916  @param nBegin - start searching index
917  @param nEnd - end searching index
918  @retval - pos of char after last char of replaced string or npos
919  **/
920  template<class find_string_t, class replace_string_t>
921  size_type replace(
922  const find_string_t& sFind,
923  const replace_string_t& sReplace,
924  size_type nBegin = 0,
925  size_type nEnd = npos) noexcept;
926 
927  /**
928  @brief Replace all occurrences of sFind with sReplace
929  @tparam find_string_t - find string type
930  @tparam replace_string_t - replace string type
931  @param sFind - string to find and replace
932  @param sReplace - string to replace with
933  @param nBegin - start searching index
934  @param nEnd - end searching index
935  @retval - number of replaced occurrences
936  **/
937  template<class find_string_t, class replace_string_t>
938  size_type replace_all(
939  const find_string_t& sFind,
940  const replace_string_t& sReplace,
941  size_type nBegin = 0,
942  size_type nEnd = npos) noexcept;
943 
944  /**
945  @brief Performs a binary comparison of the characters
946  @param chSymbol - symbol to compare
947  @retval - < 0 the first character that does not match has
948  a lower value in this than in chSymbol
949  = 0 the contents of both strings are equal
950  > 0 the first character that does not match has
951  a greater value in this than in chSymbol
952  **/
953  int compare(value_type chSymbol) const noexcept;
954 
955  /**
956  @brief Performs a binary comparison of the characters
957  @param pszStr - string to compare. must not be nullptr
958  @retval - < 0 the first character that does not match has
959  a lower value in this than in chSymbol
960  = 0 the contents of both strings are equal
961  > 0 the first character that does not match has
962  a greater value in this than in chSymbol
963  **/
964  int compare(const_pointer pszStr) const noexcept;
965 
966  /**
967  @brief Performs a binary comparison of the characters
968  @param pStr - string to compare. must not be nullptr
969  @param nStrSize - number of symbols to compare
970  @retval - < 0 the first character that does not match has
971  a lower value in this than in chSymbol
972  = 0 the contents of both strings are equal
973  > 0 the first character that does not match has
974  a greater value in this than in chSymbol
975  **/
976  int compare(const_pointer pStr, size_type nStrSize) const noexcept;
977 
978  /**
979  @brief Performs a binary comparison of the characters
980  @param sStr - string to compare
981  @retval - < 0 the first character that does not match has
982  a lower value in this than in chSymbol
983  = 0 the contents of both strings are equal
984  > 0 the first character that does not match has
985  a greater value in this than in chSymbol
986  **/
987  int compare(const basic_string& sStr) const noexcept;
988 
989  /**
990  @brief Performs a binary comparison of the characters
991  @tparam fwd_it_t - forward iterator type
992  @param itBegin - string to compare begin iterator
993  @param itEnd - string to compare end iterator
994  @retval - < 0 the first character that does not match has
995  a lower value in this than in chSymbol
996  = 0 the contents of both strings are equal
997  > 0 the first character that does not match has
998  a greater value in this than in chSymbol
999  **/
1000  template<class fwd_it_t>
1001  int compare(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1002 
1003  /**
1004  @brief Performs a binary comparison of the characters
1005  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1006  @param sStr - string to compare
1007  @retval - < 0 the first character that does not match has
1008  a lower value in this than in chSymbol
1009  = 0 the contents of both strings are equal
1010  > 0 the first character that does not match has
1011  a greater value in this than in chSymbol
1012  **/
1013  template<range_of_t_c<char_t> string_t>
1014  int compare(const string_t& sStr) const noexcept;
1015 
1016  /**
1017  @brief Find substring
1018  @param chSymbol - char to find
1019  @param nBegin - start searching index
1020  @param nEnd - end searching index (npos - to the end)
1021  @retval - substring index or npos if not found
1022  **/
1023  size_type find(value_type chSymbol, size_type nBegin = 0, size_type nEnd = npos) const noexcept;
1024 
1025  /**
1026  @brief Find substring
1027  @param pszWhat - string to find
1028  @param nBegin - start searching index
1029  @param nWhatSize - string length (npos - string is zero terminated)
1030  @param nEnd - end searching index (npos - to the end).
1031  @retval - substring index
1032  **/
1033  size_type find(const_pointer pszWhat, size_type nBegin = 0, size_type nWhatSize = npos, size_type nEnd = npos)
1034  const noexcept;
1035 
1036  /**
1037  @brief Find substring
1038  @param sWhat - string to find
1039  @param nBegin - start searching index
1040  @param nEnd - end searching index
1041  @retval - substring index or npos if not found
1042  **/
1043  size_type find(const basic_string& sWhat, size_type nBegin = 0, size_type nEnd = npos) const noexcept;
1044 
1045  /**
1046  @brief Find substring
1047  @tparam fwd_it_t - forward iterator type
1048  @param itWhatBegin - substring begin iterator
1049  @param itWhatEnd - substring end iterator
1050  @param nBegin - start searching index
1051  @param nEnd - end searching index
1052  @retval - substring index or npos if not found
1053  **/
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)
1056  const noexcept;
1057 
1058  /**
1059  @brief Find substring
1060  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1061  @param sWhat - substring
1062  @param nBegin - start searching index
1063  @param nEnd - end searching index
1064  @retval - substring index or npos if not found
1065  **/
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;
1068 
1069  /**
1070  @brief Find substring (reverse direction)
1071  @param chSymbol - char to find
1072  @param nBegin - start searching index
1073  @param nEnd - end searching index
1074  (if nBegin < end, result is equivalent of find(...))
1075  @retval - substring index or npos if not found
1076  **/
1077  size_type rfind(value_type chSymbol, size_type nBegin = npos, size_type nEnd = 0) const noexcept;
1078 
1079  /**
1080  @brief Find substring (reverse direction)
1081  @param pszWhat - c-string to find
1082  @param nBegin - start searching index
1083  @param nWhatSize - c-string length
1084  @param nEnd - end searching index
1085  (if nBegin < end, result is equivalent of find(...))
1086  @retval - substring index or npos if not found
1087  **/
1088  size_type rfind(const_pointer pszWhat, size_type nBegin = npos, size_type nWhatSize = npos, size_type nEnd = 0)
1089  const noexcept;
1090 
1091  /**
1092  @brief Find substring (reverse direction)
1093  @param sWhat - string to find
1094  @param nBegin - start searching index
1095  @param nEnd - end searching index
1096  (if nBegin < end, result is equivalent of find(...))
1097  @retval - substring index or npos if not found
1098  **/
1099  size_type rfind(const basic_string& sWhat, size_type nBegin = npos, size_type nEnd = 0) const noexcept;
1100 
1101  /**
1102  @brief Find substring (reverse direction)
1103  @tparam fwd_it_t - forward iterator type
1104  @param itWhatBegin - substring begin iterator
1105  @param itWhatEnd - substring end iterator
1106  @param nBegin - start searching index
1107  @param nEnd - end searching index
1108  (if nBegin < end, result is equivalent of find(...))
1109  @retval - substring index or npos if not found
1110  **/
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)
1113  const noexcept;
1114 
1115  /**
1116  @brief Find substring (reverse direction)
1117  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1118  @param sWhat - substring
1119  @param nBegin - start searching index
1120  @param nEnd - end searching index
1121  (if nBegin < end, result is equivalent of find(...))
1122  @retval - substring index or npos if not found
1123  **/
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;
1126 
1127  /**
1128  @brief Find first position of character
1129  @param chSymbol - char to find
1130  @param nBegin - position at which the search is to begin
1131  @retval - symbol index or npos
1132  **/
1133  size_type find_first_of(value_type chSymbol, size_type nBegin = 0) const noexcept;
1134 
1135  /**
1136  @brief Finds the first character equal to one of characters in the given character sequence
1137  @param pszWhat - string identifying characters to search for
1138  @param nBegin - position at which the search is to begin
1139  @param nWhatSize - length of character string identifying characters to search for
1140  @retval - symbol index or npos
1141  **/
1142  size_type find_first_of(const_pointer pszWhat, size_type nBegin, size_type nWhatSize) const noexcept;
1143 
1144  /**
1145  @brief Finds the first character equal to one of characters in the given character sequence
1146  @param pszWhat - null terminated string identifying characters to search for
1147  @param nBegin - position at which the search is to begin
1148  @retval - symbol index or npos
1149  **/
1150  size_type find_first_of(const_pointer pszWhat, size_type nBegin = 0) const noexcept;
1151 
1152  /**
1153  @brief Finds the first character equal to one of characters in the given character sequence
1154  @param sWhat - string identifying characters to search for
1155  @param nBegin - position at which the search is to begin
1156  @retval - symbol index or npos
1157  **/
1158  size_type find_first_of(const basic_string& sWhat, size_type nBegin = 0) const noexcept;
1159 
1160  /**
1161  @brief Finds the first character equal to one of characters in the given character sequence
1162  @tparam fwd_it_t - forward iterator type
1163  @param itWhatBegin - begin it of string identifying characters to search for
1164  @param itWhatEnd - end it of string identifying characters to search for
1165  @param nBegin - position at which the search is to begin
1166  @retval - symbol index or npos
1167  **/
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;
1170 
1171  /**
1172  @brief Finds the first character equal to one of characters in the given character sequence
1173  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1174  @param sWhat - string identifying characters to search for
1175  @param nBegin - position at which the search is to begin
1176  @retval - symbol index or npos
1177  **/
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;
1180 
1181  /**
1182  @brief Find last position of character
1183  @param chSymbol - char to find
1184  @param nEnd - position at which the search is to finish
1185  @retval - symbol index or npos
1186  **/
1187  size_type find_last_of(value_type chSymbol, size_type nEnd = 0) const noexcept;
1188 
1189  /**
1190  @brief Finds the last character equal to one of characters in the given character sequence
1191  @param pszWhat - string identifying characters to search for
1192  @param nEnd - position at which the search is to finish
1193  @param nWhatSize - length of character string identifying characters to search for
1194  @retval - symbol index or npos
1195  **/
1196  size_type find_last_of(const_pointer pszWhat, size_type nEnd, size_type nWhatSize) const noexcept;
1197 
1198  /**
1199  @brief Finds the last character equal to one of characters in the given character sequence
1200  @param pszWhat - null terminated string identifying characters to search for
1201  @param nEnd - position at which the search is to finish
1202  @retval - symbol index or npos
1203  **/
1204  size_type find_last_of(const_pointer pszWhat, size_type nEnd = 0) const noexcept;
1205 
1206  /**
1207  @brief Finds the last character equal to one of characters in the given character sequence
1208  @param sWhat - string identifying characters to search for
1209  @param nEnd - position at which the search is to finish
1210  @retval - symbol index or npos
1211  **/
1212  size_type find_last_of(const basic_string& sWhat, size_type nEnd = 0) const noexcept;
1213 
1214  /**
1215  @brief Finds the last character equal to one of characters in the given character sequence
1216  @tparam fwd_it_t - forward iterator type
1217  @param itWhatBegin - begin it of string identifying characters to search for
1218  @param itWhatEnd - end it of string identifying characters to search for
1219  @param nEnd - position at which the search is to finish
1220  @retval - symbol index or npos
1221  **/
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;
1224 
1225  /**
1226  @brief Finds the last character equal to one of characters in the given character sequence
1227  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1228  @param sWhat - string identifying characters to search for
1229  @param nEnd - position at which the search is to finish
1230  @retval - symbol index or npos
1231  **/
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;
1234 
1235  /**
1236  @brief Finds the first character not equal to chSymbol
1237  @param chSymbol - char to find
1238  @param nBegin - position at which the search is to begin
1239  @retval - symbol index or npos
1240  **/
1241  size_type find_first_not_of(value_type chSymbol, size_type nBegin = 0) const noexcept;
1242 
1243  /**
1244  @brief Finds the first character equal to none of the characters in the given character sequence
1245  @param pszWhat - string identifying characters to search for
1246  @param nBegin - position at which the search is to begin
1247  @param nWhatSize - length of character string identifying characters to search for
1248  @retval - symbol index or npos
1249  **/
1250  size_type find_first_not_of(const_pointer pszWhat, size_type nBegin, size_type nWhatSize) const noexcept;
1251 
1252  /**
1253  @brief Finds the first character equal to none of the characters in the given character sequence
1254  @param pszWhat - null terminated string identifying characters to search for
1255  @param nBegin - position at which the search is to begin
1256  @retval - symbol index or npos
1257  **/
1258  size_type find_first_not_of(const_pointer pszWhat, size_type nBegin = 0) const noexcept;
1259 
1260  /**
1261  @brief Finds the first character equal to none of the characters in the given character sequence
1262  @param sWhat - string identifying characters to search for
1263  @param nBegin - position at which the search is to begin
1264  @retval - symbol index or npos
1265  **/
1266  size_type find_first_not_of(const basic_string& sWhat, size_type nBegin = 0) const noexcept;
1267 
1268  /**
1269  @brief Finds the first character equal to none of the characters in the given character sequence
1270  @tparam fwd_it_t - forward iterator type
1271  @param itWhatBegin - begin it of string identifying characters to search for
1272  @param itWhatEnd - end it of string identifying characters to search for
1273  @param nBegin - position at which the search is to begin
1274  @retval - symbol index or npos
1275  **/
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;
1278 
1279  /**
1280  @brief Finds the first character equal to none of the characters in the given character sequence
1281  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1282  @param sWhat - string identifying characters to search for
1283  @param nBegin - position at which the search is to begin
1284  @retval - symbol index or npos
1285  **/
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;
1288 
1289  /**
1290  @brief Finds the last character not equal to chSymbol
1291  @param chSymbol - char to find
1292  @param nEnd - position at which the search is to finish
1293  @retval - symbol index or npos
1294  **/
1295  size_type find_last_not_of(value_type chSymbol, size_type nEnd = 0) const noexcept;
1296 
1297  /**
1298  @brief Finds the last character equal to none of the characters in the given character sequence
1299  @param pszWhat - string identifying characters to search for
1300  @param nEnd - position at which the search is to finish
1301  @param nWhatSize - length of character string identifying characters to search for
1302  @retval - symbol index or npos
1303  **/
1304  size_type find_last_not_of(const_pointer pszWhat, size_type nEnd, size_type nWhatSize) const noexcept;
1305 
1306  /**
1307  @brief Finds the last character equal to none of the characters in the given character sequence
1308  @param pszWhat - null terminated string identifying characters to search for
1309  @param nEnd - position at which the search is to finish
1310  @retval - symbol index or npos
1311  **/
1312  size_type find_last_not_of(const_pointer pszWhat, size_type nEnd = 0) const noexcept;
1313 
1314  /**
1315  @brief Finds the last character equal to none of the characters in the given character sequence
1316  @param sWhat - string identifying characters to search for
1317  @param nEnd - position at which the search is to finish
1318  @retval - symbol index or npos
1319  **/
1320  size_type find_last_not_of(const basic_string& sWhat, size_type nEnd = 0) const noexcept;
1321 
1322  /**
1323  @brief Finds the last character equal to none of the characters in the given character sequence
1324  @tparam fwd_it_t - forward iterator type
1325  @param itWhatBegin - begin it of string identifying characters to search for
1326  @param itWhatEnd - end it of string identifying characters to search for
1327  @param nEnd - position at which the search is to finish
1328  @retval - symbol index or npos
1329  **/
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;
1332 
1333  /**
1334  @brief Finds the last character equal to none of the characters in the given character sequence
1335  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1336  @param sWhat - string identifying characters to search for
1337  @param nEnd - position at which the search is to finish
1338  @retval - symbol index or npos
1339  **/
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;
1342 
1343  /**
1344  @brief Split string by separator
1345  @param chSeparator - char separator
1346  @retval - string_view container
1347  **/
1348  views split(const value_type chSeparator) const noexcept;
1349 
1350  /**
1351  @brief Split string by separator
1352  @param pszSeparator - separator string
1353  @param nSepLen - separator string length (npos if str is null terminated)
1354  @retval - string_view container
1355  **/
1356  views split(const_pointer pszSeparator, size_type nSepLen = npos) const noexcept;
1357 
1358  /**
1359  @brief Split string by separator
1360  @param sSeparator - separator string
1361  @retval - string_view container
1362  **/
1363  views split(const basic_string& sSeparator) const noexcept;
1364 
1365  /**
1366  @brief Split string by separator
1367  @tparam fwd_it_t - forward iterator type
1368  @param itSepFirst - separator begin iterator
1369  @param itSepLast - separator end iterator
1370  @retval - string_view container
1371  **/
1372  template<class fwd_it_t>
1373  views split(fwd_it_t itSepFirst, fwd_it_t itSepLast) const noexcept;
1374 
1375  /**
1376  @brief Split string by separator
1377  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1378  @param sSeparator - separator string
1379  @retval - string_view container
1380  **/
1381  template<range_of_t_c<char_t> string_t>
1382  views split(const string_t& sSeparator) const noexcept;
1383 
1384  /**
1385  @brief Check if current string starts with char
1386  @param chSymbol - char for comparison
1387  @retval - true if starts with char
1388  **/
1389  bool starts_with(value_type chSymbol) const noexcept;
1390 
1391  /**
1392  @brief Check if current string starts with string
1393  @param pszStr - const pointer to string
1394  @param nStrSize - string length
1395  @retval - true if starts with string
1396  **/
1397  bool starts_with(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1398 
1399  /**
1400  @brief Check if current string starts with string
1401  @param sStr - string to check
1402  @retval - true if starts with string
1403  **/
1404  bool starts_with(const basic_string& sStr) const noexcept;
1405 
1406  /**
1407  @brief Check if current string starts with string
1408  @tparam fwd_it_t - forward iterator type
1409  @param itBegin - string begin iterator
1410  @param itEnd - string end iterator
1411  @retval - true if starts with string
1412  **/
1413  template<class fwd_it_t>
1414  bool starts_with(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1415 
1416  /**
1417  @brief Check if current string starts with string
1418  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1419  @param sStr - string container to check
1420  @retval - true if starts with string
1421  **/
1422  template<range_of_t_c<char_t> string_t>
1423  bool starts_with(const string_t& sStr) const noexcept;
1424 
1425  /**
1426  @brief Check if current string ends with char
1427  @param chSymbol - char for comparison
1428  @retval - true if ends with char
1429  **/
1430  bool ends_with(value_type chSymbol) const noexcept;
1431 
1432  /**
1433  @brief Check if current string ends with string
1434  @param pszStr - const pointer to string
1435  @param nStrSize - string length
1436  @retval - true if ends with string
1437  **/
1438  bool ends_with(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1439 
1440  /**
1441  @brief Check if current string ends with string
1442  @param sStr - string to check
1443  @retval - true if starts with string
1444  **/
1445  bool ends_with(const basic_string& sStr) const noexcept;
1446 
1447  /**
1448  @brief Check if current string ends with string
1449  @tparam fwd_it_t - forward iterator type
1450  @param itBegin - string begin iterator
1451  @param itEnd - string end iterator
1452  @retval - true if ends with string
1453  **/
1454  template<class fwd_it_t>
1455  bool ends_with(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1456 
1457  /**
1458  @brief Check if current string ends with string
1459  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1460  @param sStr - string container to check
1461  @retval - true if starts with string
1462  **/
1463  template<range_of_t_c<char_t> string_t>
1464  bool ends_with(const string_t& sStr) const noexcept;
1465 
1466  /**
1467  @brief Check if string contains char
1468  @details Equal to find != npos
1469  @param chSymbol - char to check
1470  @retval - true if this string contains substring
1471  **/
1472  bool contains(value_type chSymbol) const noexcept;
1473 
1474  /**
1475  @brief Check if string contains substring
1476  @details Equal to find != npos
1477  @param pszStr - substring to check
1478  @param nStrSize - substring size
1479  @retval - true if this string contains substring
1480  **/
1481  bool contains(const_pointer pszStr, size_type nStrSize = npos) const noexcept;
1482 
1483  /**
1484  @brief Check if string contains substring
1485  @details Equal to find != npos
1486  @param sStr - string to check
1487  @retval - true if this string contains substring
1488  **/
1489  bool contains(const basic_string& sStr) const noexcept;
1490 
1491  /**
1492  @brief Check if string contains substring
1493  @details Equal to find != npos
1494  @tparam fwd_it_t - forward iterator type
1495  @param itBegin - substring begin iterator
1496  @param itEnd - substring end iterator
1497  @retval - true if this string contains substring
1498  **/
1499  template<class fwd_it_t>
1500  bool contains(fwd_it_t itBegin, fwd_it_t itEnd) const noexcept;
1501 
1502  /**
1503  @brief Check if string contains substring
1504  @details Equal to find != npos
1505  @tparam string_t - string-ish type, satisfying the "range_of_t_c" concept
1506  @param sStr - string to check
1507  @retval - true if this string contains substring
1508  **/
1509  template<range_of_t_c<char_t> string_t>
1510  bool contains(const string_t& sStr) const noexcept;
1511 
1512  basic_string& operator=(const_pointer pszSource) noexcept;
1513  basic_string& operator=(basic_string&& sStr) noexcept;
1514  basic_string& operator=(const basic_string& sStr) noexcept;
1515  template<range_of_t_c<char_t> string_t>
1516  basic_string& operator=(const string_t& sStr) noexcept;
1517 
1518  basic_string& operator+=(value_type chSymbol) noexcept;
1519  basic_string& operator+=(const_pointer pszSource) noexcept;
1520  basic_string& operator+=(const basic_string& sStr) noexcept;
1521  template<range_of_t_c<char_t> string_t>
1522  basic_string& operator+=(const string_t& sStr) noexcept;
1523 
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;
1529 
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;
1535 
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;
1541 
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;
1547 
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;
1553 
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;
1559 
1560  reference operator[](size_type nSymbol) noexcept;
1561  const_reference operator[](size_type nSymbol) const noexcept;
1562 
1563  operator string_view() const noexcept;
1564 
1565  explicit operator bool() const noexcept;
1566 
1567 private:
1568  /**
1569  @brief Resize string
1570  @details If new size is smaller, string will be truncated
1571  @param nSymbols - new size
1572  @param eType - resize type
1573  @retval - true if memory alloc is successful
1574  **/
1575  bool _resize(size_type nSymbols, string_resize_type eType = string_resize_type::common) noexcept;
1576 
1577  /**
1578  @brief Common algorithm for trimming string to the left
1579  @tparam searcher_t - "searcher" type
1580  @param searcher - function that returns true if symbol has to be deleted
1581  @retval - number of deleted symbols
1582  **/
1583  template<class searcher_t>
1584  size_type _trim_left(const searcher_t& searcher) noexcept;
1585 
1586  /**
1587  @brief Common algorithm for trimming string to the right
1588  @tparam searcher_t - "searcher" type
1589  @param searcher - function that returns true if symbol has to be deleted
1590  @retval - number of deleted symbols
1591  **/
1592  template<class searcher_t>
1593  size_type _trim_right(const searcher_t& searcher) noexcept;
1594 
1595  /**
1596  @brief Common algorithm for trimming string to the both sides
1597  @tparam searcher_t - "searcher" type
1598  @param searcher - function that returns true if symbol has to be deleted
1599  @retval - number of deleted symbols
1600  **/
1601  template<class searcher_t>
1602  size_type _trim(const searcher_t& searcher) noexcept;
1603 
1604  /**
1605  @brief Common algorithm for finding substring
1606  @tparam comparator_t - "comparator" type
1607  @param nBegin - start searching index
1608  @param nEnd - end searching index (npos - to the end)
1609  @param comparator - comparator function
1610  @retval - substring index or npos if not found
1611  **/
1612  template<class comparator_t>
1613  size_type _find(size_type nBegin, size_type nEnd, const comparator_t& comparator) const noexcept;
1614 
1615  /**
1616  @brief
1617  @tparam comparator_t - "comparator" type
1618  @param nBegin - start searching index
1619  @param nEnd - end searching index
1620  @param comparator - comparator function
1621  @retval - substring index or npos if not found
1622  **/
1623  template<class comparator_t>
1624  size_type _rfind(size_type nBegin, size_type nEnd, const comparator_t& comparator) const noexcept;
1625 
1626  /**
1627  @brief Common algorithm for find_first_of
1628  @tparam incrementer_t - "incrementer" type
1629  @tparam fwd_it_t - forward iterator type
1630  @param itBegin - begin it of "of" string
1631  @param itEnd - end it of "of" string
1632  @param nBegin - position at which the search is to begin
1633  @param incrementer - function that increments iterator and returns itEnd when string is over
1634  @retval - symbol index or npos
1635  **/
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)
1638  const noexcept;
1639 
1640  /**
1641  @brief Common algorithm for find_last_of
1642  @tparam incrementer_t - "incrementer" type
1643  @tparam fwd_it_t - forward iterator type
1644  @param itBegin - begin it of "of" string
1645  @param itEnd - end it of "of" string
1646  @param nEnd - position at which the search is to finish
1647  @param incrementer - function that increments iterator and returns itEnd when string is over
1648  @retval - symbol index or npos
1649  **/
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)
1652  const noexcept;
1653 
1654  /**
1655  @brief Common algorithm for find_first_not_of
1656  @tparam incrementer_t - "incrementer" type
1657  @tparam fwd_it_t - forward iterator type
1658  @param itBegin - begin it of "of" string
1659  @param itEnd - end it of "of" string
1660  @param nBegin - position at which the search is to begin
1661  @param incrementer - function that increments iterator and returns itEnd when string is over
1662  @retval - symbol index or npos
1663  **/
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)
1666  const noexcept;
1667 
1668  /**
1669  @brief Common algorithm for find_last_not_of
1670  @tparam incrementer_t - "incrementer" type
1671  @tparam fwd_it_t - forward iterator type
1672  @param itBegin - begin it of "of" string
1673  @param itEnd - end it of "of" string
1674  @param nEnd - position at which the search is to finish
1675  @param incrementer - function that increments iterator and returns itEnd when string is over
1676  @retval - symbol index or npos
1677  **/
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)
1680  const noexcept;
1681 
1682 private:
1683  string_data<traits_t> m_Data;
1684 };
1685 
1686 using cstring = basic_string<char>;
1687 using wstring = basic_string<wchar_t>;
1688 using string = basic_string<char_type>;
1689 
1690 } // namespace qx
1691 
1692 #include <qx/containers/string/string.inl>
String class.
Definition: string.h:64
void push_back(value_type chSymbol) noexcept
Insert char in the end of the string.
Definition: string.inl:541
void erase(iterator itFirst, iterator itLast) noexcept
Erase substring.
Definition: string.inl:553
size_type find(value_type chSymbol, size_type nBegin=0, size_type nEnd=npos) const noexcept
Find substring.
Definition: string.inl:1279
bool remove_prefix(value_type chSymbol) noexcept
Remove string prefix if matches.
Definition: string.inl:984
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.
Definition: string.inl:143
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.
Definition: string.inl:1061
std::optional< to_t > to(const_pointer pszFormat=nullptr) const noexcept
Convert string to specified type.
Definition: string.inl:268
int compare(value_type chSymbol) const noexcept
Performs a binary comparison of the characters.
Definition: string.inl:1241
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.
Definition: string.inl:172
size_type find_last_of(value_type chSymbol, size_type nEnd=0) const noexcept
Find last position of character.
Definition: string.inl:1526
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.
Definition: string.inl:547
size_type capacity() const noexcept
Get allocated memory size (including null terminator)
Definition: string.inl:254
value_type pop_back() noexcept
Erase last char and return it.
Definition: string.inl:591
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.
Definition: string.inl:315
views split(const value_type chSeparator) const noexcept
Split string by separator.
Definition: string.inl:1799
size_type rfind(value_type chSymbol, size_type nBegin=npos, size_type nEnd=0) const noexcept
Find substring (reverse direction)
Definition: string.inl:1359
size_type length() const noexcept
Get string length.
Definition: string.inl:242
void free() noexcept
Clear string and free allocated memory.
Definition: string.inl:202
void from(const from_t &data)
Construct string from custom type.
Definition: string.inl:333
size_type trim_right() noexcept
Trim the string to the right (whitespace characters)
Definition: string.inl:707
void assign(size_type nSymbols, value_type chSymbol) noexcept
Assign by filling.
Definition: string.inl:64
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.
Definition: string.inl:1221
bool ends_with(value_type chSymbol) const noexcept
Check if current string ends with char.
Definition: string.inl:1935
void swap(basic_string &sOther) noexcept
Swap this str and other.
Definition: string.inl:179
value_type pop_front() noexcept
Erase first char and return it.
Definition: string.inl:599
void append(value_type chSymbol) noexcept
Append char.
Definition: string.inl:372
size_type trim() noexcept
Trim the string to the both sides (whitespace characters)
Definition: string.inl:807
void to_upper() noexcept
Convert string to uppercase.
Definition: string.inl:223
void shrink_to_fit() noexcept
Fit allocated size to string's actual size.
Definition: string.inl:195
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.
Definition: string.inl:1145
size_type find_last_not_of(value_type chSymbol, size_type nEnd=0) const noexcept
Finds the last character not equal to chSymbol.
Definition: string.inl:1706
size_type trim_left() noexcept
Trim the string to the left (whitespace characters)
Definition: string.inl:607
size_type reserve(size_type nCapacity) noexcept
Reserve memory for the string.
Definition: string.inl:185
string_view substr(size_type nPos, size_type nSymbols=npos) const noexcept
Get substring.
Definition: string.inl:208
void to_lower() noexcept
Convert string to lowercase.
Definition: string.inl:216
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.
Definition: string.inl:125
size_type insert(size_type nPos, value_type chSymbol) noexcept
Insert substring.
Definition: string.inl:412
bool remove_suffix(value_type chSymbol) noexcept
Remove string suffix if matches.
Definition: string.inl:1017
const_pointer c_str() const noexcept
Get pointer to string zero terminated.
Definition: string.inl:248
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.
Definition: string.inl:907
static constexpr size_type max_size() noexcept
Get the theoretical maximum of string size.
Definition: string.inl:260
bool starts_with(value_type chSymbol) const noexcept
Check if current string starts with char.
Definition: string.inl:1887
value_type front() const noexcept
Get first char of the string.
Definition: string.inl:230
value_type back() const noexcept
Get last char of the string.
Definition: string.inl:236
size_type find_first_of(value_type chSymbol, size_type nBegin=0) const noexcept
Find first position of character.
Definition: string.inl:1439
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.
Definition: string.inl:151
size_type find_first_not_of(value_type chSymbol, size_type nBegin=0) const noexcept
Finds the first character not equal to chSymbol.
Definition: string.inl:1613
Const random access iterator type.
Definition: iterator.h:74
Non-const random access iterator type.
Definition: iterator.h:35
Represents string data.
Definition: string_data.h:36
Static assert macros.
Check that tuple type contains T.