Hello there, i wanna know how to make string's shorter (or cut letters from the string), there is an example:
1 2 3 4 5 6 7 8 9
string number;
cin >> number; //input from keyboard, "two"
............... //How to cut the "o"?
//now the number is "tw"
number += "en";
number += "ty"; //just an example
cout<<number<<endl; //The result is: "twenty"
return 0;
I hope you will understand my example, thanks in advance!