basic_string& replace(size_type pos, size_type n, size_type n1, charT c) basic_string Replaces a substring of *this with n1 copies of c. basic_string& replace(iterator first, iterator last, const basic_string& s) basic_string Replaces a substring of *this with the string s. basic_string& replace(iterator first, iterator last, const charT* s, size_type n) basic_string Replaces a substring of *this with the first n characters of s. basic_string& replace(iterator first, iterator last, const charT* s) basic_string Replaces a substring of *this with a null-terminated character array. basic_string& replace(iterator first, iterator last, size_type n, charT c) basic_string Replaces a substring of *this with n copies of c. template <class InputIterator> basic_string& replace(iterator first, iterator last, InputIterator f, InputIterator l) basic_string Replaces a substring of *this with the range [f, l) size_type copy(charT* buf, size_type n, size_type pos = 0) const basic_string Copies a substring of *this to a buffer. size_type find(const basic_string& s, size_type pos = 0) const basic_string Searches for s as a substring of *this, beginning at character pos of *this. size_type find(const charT* s, size_type pos, size_type n) const basic_string Searches for the first n characters of s as a substring of *this, beginning at character pos of *this. size_type find(const charT* s, size_type pos = 0) const basic_string Searches for a null-terminated character array as a substring of *this, beginning at character pos of *this. size_type find(charT c, size_type pos = 0) const basic_string Searches for the character c, beginning at character position pos. size_type rfind(const basic_string& s, size_type pos = npos) const basic_string Searches backward for s as a substring of *this, beginning at character position min(pos, size()) size_type rfind(const charT* s, size_type pos, size_type n) const basic_string Searches backward for the first n characters of s as a substring of *this, beginning at character position min(pos, size()) size_type rfind(const charT* s, size_type pos = npos) const basic_string Searches backward for a null-terminated character array as a substring of *this, beginning at character min(pos, size())
Добавить отзыв
ВСЕ ОТЗЫВЫ О КНИГЕ В ИЗБРАННОЕ

0

Вы можете отметить интересные вам фрагменты текста, которые будут доступны по уникальной ссылке в адресной строке браузера.

Отметить Добавить цитату