简体   繁体   中英

C++: separating first and last name from a file, separated by a comma

I have this as a file:

Collins,Bill 80
Smith,Bart 75
Allen,Jim 82
Griffin,Jim 55
Stamey,Marty 90
Rose,Geri 78
Taylor,Terri 56
Johnson,Jill 77
Allison,Jeff 45
Looney,Joe 89
Wolfe,Bill 63
James,Jean 72
Weaver,Jim 77
Pore,Bob 91 
Rutherford,Greg 42
Javens,Renee 74
Harrison,Rose 58
Setzer,Cathy 93
Pike,Gordon 48
Holland,Beth 79

As you can see the last name and first name are separated with a comma.

Right now I have this in my code:

ifstream inputFile;
inputFile.open ("students.txt");

string studentNames;            // Student names - Last name followed by first
int studentMarks = 0;           // Student mark for text/exam

// Read in data from students.txt
inputFile >> studentNames;
inputFile >> studentMarks;

// IF file has too much data, output WARNING
if (numElts >= NUM_NAMES)
{
    cout << "Error: File contains too many lines of data, check the file." << endl << endl;
}
else
{
    names[numElts] = studentNames;
    marks[numElts] = studentMarks;
    numElts++;
}

I want to bypass these commas, I want to store it as firstname and then last name which then I will just merge into name like name = firstname " " last name . How should I do that, please?

std::string::size_type commaPos = studentName.find(",");
std::string studentLastName = studentName.substr(0, commaPos);
std::string studentFirstName = studentName.substr(commaPos + 1);

use this function to remove the , and get the first name last with space between,

    string output;
    int position = studentNames.find(',');
    for(int i=position+1;i<studentNames.size();i++)
        output+=studentNames[i];
    output+=' ';
    for(int i=0;i<position;i++)
        output+=studentNames[i];
    studentNames = output;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM