//pseudo of course
string nums = "";
string letts = "";
string temp;
while (cin){
if alpha
>> temp
letts += temp
if digit
>> temp
nums += temp
So that the input of R1u2n4 would be
nums = 124
letts = Run
???
Thank you.
Thanks not only for the documentation(because I do actually read everything recommended to me), but a working example as well. This is exactly what I was hoping for.