remover ou apagar o primeiro e o último caractere da string c
str.pop_back(); // removes last /back character from str
str.erase(str.begin()); // removes first/front character from str
Anxious Alligator