使用getline解析文本文件,并将每行的一部分分配给数组中的不同变量

问题描述 投票:0回答:1

我正在用C ++编写程序,我想使用该程序读取和解析(.pdb)文本文件中的行。线看起来像这样:

ATOM # CHAR 0 FLOAT1 FLOAT2 FLOAT3 1.00 0.00 CHAR

其中#是整数(原子序号),CHAR是原子符号(在这种情况下为O或Si)。 FLOAT分别是x,y和z坐标。

前三行是:

ATOM      1  O          0      0.024  8.489  10.490  1.00  0.00        O
ATOM      2  O          0     10.069  1.380  9.223   1.00  0.00        O
ATOM      3  O          0     20.066  11.249 2.652   1.00  0.00        O

到目前为止,我已经设法逐行读取文本并使用sscanf扫描内容。但是,我无法将数据存储到我创建的Atom class数组中。这是我的头文件中包含的类的外观:

class Atom  {
public:
        Atom()
        {};'

        int atom_num;
        char atom_sym[2];
        float atom_x, atom_y, atom_z;
};

这是我的程序中用于解析各行的部分:

int main()
{
    int i;
    int Linecount = 0;

    char ign_a, ign_t, ign_o, ign_m; // I use these to store the ATOM of each line
    int ign1;  // I use this to store the 0 that appears before the coordinates of each line

    std::string filename = "textfile.pdb"
    std::ifstream file;

    file.open (filename.c_str());
    if (file.is_open())  {
        std::string line;
        while (getline(file, line))
            ++Linecount;
    }
    file.close();

    Atom atomList[Linecount];

    file.open (filename.c_str());
    if (file.is_open())  {
        std::string line;
        int atom_num;
        char atom_sym[2];
        float atom_x, atom_y, atom_z;
        for (i = 1; i < Linecount; ++i)  { // I have tried this for loop in different sections of the program but nothing seems to work
            while (getline(file, line))  {
                if (line.find("ATOM") == 0)  {
                    sscanf(line.c_str(), "%c%c%c%c %d %s %d %f %f %f", &ign_a, &ign_t, &ign_o, &ign_m,
                            &atom_num, atom_sym, &ign1, &atom_x, &atom_y, &atom_z); //

                    atomList[i].atom_num = atom_num; // This is where I attempt to store the data into the array
                    strcpy(atomList[i].atom_sym, atom_sym);
                    atomList[i].atom_x = atom_x;
                    atomList[i].atom_y = atom_y;
                    atomList[i].atom_z = atom_z;
                }

                    printf("%d %s %.3f %.3f %.3f\n", atomList[i].atom_num, atomList[i].atom_sym,
                            atomList[i].atom_x, atomList[i].atom_y, atomList[i].atom_z); // Test parsing of lines
            }
    }
    file.close();

    int j = 10;
    printf("TEST: %d %s %.3f %.3f %.3f\n", atomList[j].atom_num, atomList[j].atom_sym,
            atomList[j].atom_x, atomList[j].atom_y, atomList[j].atom_z);  // Print function to test storing into array

return 0;
}

尽管第一个打印功能尽管使用if (line.find("ATOM") == 0)语句也打印了三行“垃圾”行,但我认为这是由于文本文件的标题,但它似乎可以正常工作。这是第三行的输出:

0 0.000 0.000 0.000
0 0.000 0.000 0.000
0 0.000 0.000 0.000
1 O 0.024 8.489 10.490
2 O 10.069 1.380 9.223
3 O 20.066 11.249 2.652

但是,第二个打印功能仅打印零值,这表明数据没有正确存储到数组中。我也尝试过使用std::cinstd::cout分配和打印数据,但这似乎没有帮助。这是第二个打印功能的输出:

TEST: 0 0.000 0.000 0.000

我的主要问题是,我无法将输入文件中的数据存储到Atom类的数组atomList [i]中。我已经尝试过移动for循环以及直接扫描到atomList [i]变量中,但是我仍然停留在这一点上。我需要更改什么,以便一行一行地读取行并将正确的信息存储到数组中?

我将不胜感激。谢谢!

c++ arrays parsing variable-assignment getline
1个回答
0
投票

不确定是否可以回答您的任何问题,但这是一种解决方法。它不使用任何旧的C型习惯用法,例如scanf和原始数组。

#include <iostream>
#include <fstream>
#include <iomanip>
#include <vector>
#include <string>
#include <sstream>

// Overloaded extraction operator
std::ifstream& operator>>(std::istream& i, Atom& a)
{
    std::string temp;
    int temp2;

    if (i >> temp
          >> a.atom_num
          >> a.atom_sym
          >> temp2
          >> a.atom_x
          >> a.atom_y
          >> a.atom_z) {
        i.ignore(256, '\n'); // Discard rest
    }

    return i;
}
// Overloaded insertion operator
std::ofstream& operator<<(std::ostream& o, const Atom& a)
{
    o << a.atom_num << " "
      << a.atom_sym << " "
      << std::setprecision(3) << a.atom_x << " "
      << std::setprecision(3) << a.atom_y << " "
      << std::setprecision(3) << a.atom_z;

    return o;
}

int main()
{
    std::string filename = "textfile.pdb";
    std::ifstream file(filename);

    std::vector<Atom> atomList;

    if (file) {
        std::string line;
        while (std::getline(file, line)) {
            std::stringstream ss(line);
            Atom temp;
            if (ss >> temp) {
                atomList.push_back(temp);
            }
        }
    }

    if (atomList.size() > 10) {
        std::cout << atomList[10] << '\n';
    }

    return 0;
}
© www.soinside.com 2019 - 2024. All rights reserved.