Question

I want to get some data between some 2 indexes. For example, I have string: "just testing..." and I need string from 2 till 6. I should get: 'st tes'.

What function can do this for me?

Was it helpful?

Solution

Use substr:

std::string myString = "just testing...";

std::string theSubstring = myString.substr(2, 6);

Note that the second parameter is the length of the substring, not an index (your question is a bit unclear, since the substring from 2 to 6 is actually 'st t', not 'st tes').

OTHER TIPS

use the substr method:

std::string theString = "just testing";
std::string theSubstring = theString.substr(2, 4);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top