std::basic_string::pop_back

From cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
 
void pop_back();
(since C++11)

Removes the last character from the string.

Contents

[edit] Parameters

(none)

[edit] Return value

(none)

[edit] Complexity

Constant.

[edit] Exceptions

(none)

[edit] See also

appends a character to the end
(public member function)