Following are some of the common operations on strings.
Delete first and last letter of the string(substring)
std::string s = "this is my string"; s.substr(1, s.length() -2);
Following are some of the common operations on strings.
Delete first and last letter of the string(substring)
std::string s = "this is my string"; s.substr(1, s.length() -2);