我正在尝试将由空格分隔的字符串插入到字符串数组中,而不在 C++ 中使用向量。例如:
using namespace std;
int main() {
string line = "test one two three.";
string arr[4];
//codes here to put each word in string line into string array arr
for(int i = 0; i < 4; i++) {
cout << arr[i] << endl;
}
}
我希望输出为:
test
one
two
three.
我知道在 C++ 中已经有其他问题询问字符串 > 数组,但我找不到任何满足我的条件的答案:将字符串拆分为数组而不使用向量。