![]() |
Home | Libraries | People | FAQ | More |
Replace a range with a string.
string& replace( const_iterator first, const_iterator last, string_view sv);
Replaces the characters in the range {first, last)
with those of sv
.
{first, last)
is a valid range.
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
*this
Name |
Description |
---|---|
|
An iterator referring to the first character to replace. |
|
An iterator one past the end of the last character to replace. |
|
The |
Type |
Thrown On |
---|---|
|
|