Replace the specified outNumChars characters starting at the specified outPosition in this string (or the suffix of this string starting at outPosition if outPosition + outNumChars > length()) with the optionally specified numChars characters starting at the specified position in the specified replacement string (or the suffix of replacement starting at position if position + numChars > replacement.length()). If numChars is not specified, npos is used. Return a reference providing modifiable access to this string. Throw out_of_range if outPosition > length() or position > replacement.length().
Synopsis
Declared in <bslstl_string.h>
basic_string<char32_t>&
replace(
size_type outPosition,
size_type outNumChars,
basic_string<char32_t> const& replacement,
size_type position,
size_type numChars = npos);
Created with MrDocs