This is a code for reading in .txt file and spliting it by : and printing out the result. But I got stuck on the while-loop. This is my code.
#include <iostream>
#include <fstream>
#include <string>
#include <cstring>
using namespace std;
string* split(const string& str, const string& delim) {
    string* string_list = new string[10];
    int idx = 0;
    char *token = strtok(const_cast<char*>(str.c_str()), delim.c_str());
    while (token != NULL) {
        string_list[idx] = token;
        token = strtok(NULL, delim.c_str());
        ++idx;
    }
    return string_list;
}
struct Item {
    string name;
    string age;
    string id;
    string subject[10];
};
struct Item* create_item() {
    struct Item* pitem = new Item;
    return pitem;
};
void insert_item(struct Item *prev_item, struct Item *item) {
    item = (prev_item + 5);
}
int main() {
    string student, student2;
    string *string_list, *subject, *string_list2, *subject2;
    struct Item* pstudent, *pstudent2;
    ifstream fin;
    fin.open("input.txt");
    fin >> student;
    while (student != "\n") {
        string_list = split(student, ":");
        pstudent = create_item();
        pstudent->name = *string_list;
        pstudent->age = *(string_list + 1);
        pstudent->id = *(string_list + 2);
        subject = split(*(string_list + 3), ",");
        for (int i = 0; i < 10; i++) {
            if (*(subject + i) != "") {
                pstudent->subject[i] = *(subject + i);
            }
        }
        cout << *(string_list+1) << endl;
        fin >> student2;
        string_list = split(student2, ":");
        pstudent2 = create_item();
        insert_item(pstudent, pstudent2);
        pstudent2->name = *(string_list);
        pstudent2->age = *(string_list + 1);
        pstudent2->id = *(string_list + 2);
        subject2 = split(*(string_list + 3), ",");
        for (int i = 0; i < 10; i++) {
            if (*(subject2 + i) != "") {
                pstudent2->subject[i] = *(subject2 + i);
            }
        }
    }
    cout << pstudent2->name << endl;
    fin.close();
    return 0;
}
I am still working on this code, but the while-loop in the main() will not stop. I wanted it to stop when the input.txt file input is a new line.
input.txt is
Mary:20:287:Math,Algorithm\n Tom:21:202:Math,English\n Hee:20:256:Math
thanks in advance!
 
    