Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
#include <iostream> int main() { std::string s = "\"c++ \"node.js\" c c++ c# python\""; std::cout << s << '\n'; s.erase( 0, 1 ); s.erase( s.size() - 1 ); std::cout << s; } /* run: "c++ "node.js" c c++ c# python" c++ "node.js" c c++ c# python */