例如,我有一个基于字符串的向量:
vector<string> text_vec;
每个字符串中都存有多个单词。所以,我需要将每个单词从这个向量复制到另一个字符串向量,但我应该将每个单词放在单独的字符串中。我怎么能这样做?
答案 0 :(得分:1)
vector<string> text_vec_2;
for(unsigned int i=0;i<text_vec.size();++i){
// assuming a split-function which you have created
// which returns a vector with the individual words
vector<string> words = splitString(text_vec[i]);
// copy the words into the new vector
for(unsigned int j=0;j<words.size();++j){
text_vec_2.push_back(words[j]);
}
}
答案 1 :(得分:1)
你的意思是你的矢量内容是这样的吗?
{ "word0", "word1 word2 word3", "word4 word5" }
你想得到这样的结果:
{ "word0", "word1", "word2", "word3", "word4", "word5" }
第一个重要的事情是定义构成单词的内容。我假设一个词是由至少一个空格隔开的一切。实际上,您可能希望处理一些特殊情况,例如:
让我们首先定义一个字符串拆分函数,它接受std::string
并返回std::vector<std::string>
。它将首先使用上述假设提供简单的分裂;你可以在以后使它更复杂:
std::vector<std::string> split(std::string const& input)
{
std::vector<std::string> result;
std::istringstream is(input);
std::string word;
while (is >> word)
{
result.push_back(word);
}
return result;
}
我们可以使用此功能,我们可以将它应用于您的输入向量:
std::vector<std::string> normalise(std::vector<std::string> const& strings)
{
std::vector<std::string> result;
for (auto const& string : strings)
{
auto const tokens = split(string);
for (auto const& token : split(string))
{
result.push_back(token);
}
}
return result;
}
这是一个完整的测试程序:
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
std::vector<std::string> split(std::string const& input)
{
std::vector<std::string> result;
std::istringstream is(input);
std::string word;
while (is >> word)
{
result.push_back(word);
}
return result;
}
std::vector<std::string> normalise(std::vector<std::string> const& strings)
{
std::vector<std::string> result;
for (auto const& string : strings)
{
auto const tokens = split(string);
for (auto const& token : split(string))
{
result.push_back(token);
}
}
return result;
}
int main()
{
std::vector<std::string> const input = { "word0", "word1 word2 word3", "word4 word5" };
for (auto const& word : normalise(input))
{
std::cout << word << "\n";
}
}