delete a part of a string code example
Example: 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
str.pop_back(); // removes last /back character from str
str.erase(str.begin()); // removes first/front character from str