将C ++中的字符串拆分并处理为不同的变量

时间:2013-03-29 09:59:00

标签: c++ string sorting stream split

我有一个包含大量数据的文本文件,实际上是学生列表 结构如下:“姓名”“电话”“性别”“学生ID”“电子邮件”

以下是列表示例:

  

Roger Pont 70778745 M 20120345 hills@school.edu
  Tommy Holness 5127438973 M 20120212 tommy@school.edu
  Lee Kin Fong 864564456434 F 30245678 fong@school.edu

数据存储在文本文件中,我已经使用getline()函数将每一行转换为字符串。

即:学生[0]包含“Roger Pont 7077874567 M 20120345 hills@school.edu”

我的任务是按照StudentID按升序对记录进行排序。

我的问题是我想把字符串分成不同的变量类型 但是,由于某些名称之间有更多的空格而且电话号码由不同的长度组成,我不能这样使用输入和输出流:
流>> name [i]>> tel [i]>>性别[i]>> StudentID [i]>>电子邮件[I];

如何将字符串拆分为不同的变量?

提前致谢。

备注:我已阅读此内容(Splitting a string into multiple variables in C++)但与此案例不同,我没有特定的模式,例如在表示年龄的整数之前加上“age”一词。

2 个答案:

答案 0 :(得分:4)

Roger Pont 70778745 M 20120345 hills@school.edu
Tommy Holness 5127438973 M 20120212 tommy@school.edu
Lee Kin Fong 864564456434 F 30245678 fong@school.edu

查看上述数据,如果我们处理每行向后,那么问题就会变得非常简单:

  • 拆分为一行。假设单词数为N
  • 最后一个字是电子邮件,即words[N-1] =>电子邮件地址
  • 第二个是 studentid ,即words[N-2] =>学生卡。
  • 同样,第三个是性别,第四个是手机,其余的单词是名称

这给了你足够的暗示。

代码:

#include <iostream>
#include <sstream>
#include <vector>
#include <string>
#include <iterator>
#include <cassert>

struct student
{
  std::string name;
  std::string phone;
  std::string gender;
  std::string student_id;
  std::string email;
};

int main()
{
    std::vector<student> students;

    std::string line;
    while(std::getline(std::cin, line))
    {
        std::istringstream ss(line);
        std::istream_iterator<std::string> begin(ss), end;
        std::vector<std::string> words(begin, end); 

        assert(words.size() >= 5); 

        int n = words.size() - 1;
        student s { words[0], words[n-3], words[n-2], words[n-1], words[n] };
        for (int i = 1 ; i < n - 3 ; i++) s.name += " " + words[i];

        students.push_back(s);
    }

    //printing
    for(auto && s : students)
        std::cout << "name       = " << s.name  << "\n"
                  << "phone      = " << s.phone << "\n"
                  << "gender     = " << s.gender << "\n"
                  << "student_id = " << s.student_id << "\n"
                  << "email      = " << s.email << "\n\n";
}

输入:

Roger Pont 70778745 M 20120345 hills@school.edu
Tommy Holness 5127438973 M 20120212 tommy@school.edu
Lee Kin Fong 864564456434 F 30245678 fong@school.edu

输出:

name       = Roger Pont
phone      = 70778745
gender     = M
student_id = 20120345
email      = hills@school.edu

name       = Tommy Holness
phone      = 5127438973
gender     = M
student_id = 20120212
email      = tommy@school.edu

name       = Lee Kin Fong
phone      = 864564456434
gender     = F
student_id = 30245678
email      = fong@school.edu

在线演示

现在花一些时间来理解代码。我向您展示的代码是使用C ++ 11编写的。它演示了Modern C ++的许多习语。

  • 如何阅读文件。逐行。
  • 如何分割线条,并填充字符串向量。
  • 如何填写结构(特定于问题)

希望有所帮助。

答案 1 :(得分:0)

#include <iostream>
#include <vector>
#include <sstream>

using namespace std;

    std::vector<std::string> strings;
    std::istringstream f("Roger Pont 70778745 M  20120345 hills@school.edus");
    std::string s;
    while (std::getline(f, s, ' ')) {
        std::cout << s << std::endl;
        strings.push_back(s);
    }

这个问题是两个单词之间的间距大于1个空格''。