How do I get a part of a string in C++? I want to know what are the elements from 0 to i.
5 Answers
You want to use std::string::substr. Here's an example, shamelessly copied from http://www.cplusplus.com/reference/string/string/substr/
// string::substr #include <iostream> #include <string> using namespace std; int main () { string str="We think in generalities, but we live in details."; // quoting Alfred N. Whitehead string str2, str3; size_t pos; str2 = str.substr (12,12); // "generalities" pos = str.find("live"); // position of "live" in str str3 = str.substr (pos); // get from "live" to the end cout << str2 << ' ' << str3 << endl; return 0; } Comments
You use substr, documented here:
#include <iostream> #include <string> using namespace std; int main(void) { string a; cout << "Enter string (5 characters or more): "; cin >> a; if (a.size() < 5) cout << "Too short" << endl; else cout << "First 5 chars are [" << a.substr(0,5) << "]" << endl; return 0; } You can also then treat it as a C-style string (non-modifiable) by using c_str, documented here.
Comments
If the string is declared as an array of characters, you can use the following approach:
char str[20]; int i; strcpy(str, "Your String"); // Now let's get the sub-string cin >> i; // Do some out-of-bounds validation here if you want.. str[i + 1] = 0; cout << str; If you mean std::string, use substr function as Will suggested.