Append characters to this string.
Declared in <bslstl_string.h>
basic_string&
append(
CHAR_TYPE const* characterString,
size_type numChars);
Append to this string the specified initial numChars characters from the specified characterString, and return a reference providing modifiable access to this string. The behavior is undefined unless characterString is at least numChars long.
reference providing modifiable access to this string
| Name | Description |
|---|---|
| characterString | pointer to characters |
| numChars | number of characters |