Hi guys, 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?
Hi guys, 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?
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').