Answers for "how to erase first element of string in cpp"

C++
8

remove or erase first and last character of string c++

str.pop_back(); // removes last /back character from str
str.erase(str.begin()); // removes first/front character from str
Posted by: Guest on September-16-2020

Code answers related to "how to erase first element of string in cpp"

Browse Popular Code Answers by Language