S
Steph W.
I know you can copy a vector to a string by using:
std::string t( v.begin(), v.end() );
But is it possible just to copy apart of a vector element to a string?
For instance if you have a vector that has the following:
S R A
F B 30
M A 49
F M 34
Each line would be an element and each char would be an element inside that element. So could take vector[1][4:5], which be the "30", and just put that into a string variable?
std::string t( v.begin(), v.end() );
But is it possible just to copy apart of a vector element to a string?
For instance if you have a vector that has the following:
S R A
F B 30
M A 49
F M 34
Each line would be an element and each char would be an element inside that element. So could take vector[1][4:5], which be the "30", and just put that into a string variable?