tags:

views:

43

answers:

2

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?

+5  A: 

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').

James McNellis
+1  A: 

use the substr method:

std::string theString = "just testing";
std::string theSubstring = theString.substr(2, 4);
dfa