0

所以我遇到了一些奇怪的问题,这似乎是一个非常简单的问题。

我有一个向量:

向量(字符串)集合线;

这包含我从 .txt 文件中获得的文本行。文本文件的内容是:

"4

磁盘 0.2 0.00005

鼠标 0.4 0.00002

键盘 0.3 0.00004

网络 0.5 0.0001"

collectionOfLines[0] = "磁盘 0.2 0.00005"

我试图将此字符串分成三个不同的字符串:“Disk”、“0.2”和“0.00005”,然后将这些字符串放入不同的向量中:

向量(字符串)集合命令;

这是我从行字符串中获取子字符串并将它们放入新向量的循环。

string deviceName;
string interruptProbability;
string interruptTime;

for(int i = 1; i < collectionOfLines.size(); i++) { // i = 1 because I am ignoring the "4" in the txt file
    string currentLine = collectionOfLines[i];
    int index = 0;
    for(int j = 0; j < currentLine.length(); j++) {
        if(j == 0) {
            continue;
        } else if(deviceName.empty() && currentLine[j-1] == ' ') {
            deviceName = currentLine.substr(index, j-1);
            index = j;
        } else if (interruptProbability.empty() && currentLine[j-1] == ' ') {
            interruptProbability = currentLine.substr(index, j-1);
            index = j;
        } else if (!deviceName.empty() && !interruptProbability.empty()) {
            interruptTime = currentLine.substr(index, currentLine.length());
            break;
        } else {
            continue;
        }
    }
    collectionOfCommands.push_back(deviceName);
    collectionOfCommands.push_back(interruptProbability);
    collectionOfCommands.push_back(interruptTime);
}

当我运行它时,我没有收到任何错误,但是当我打印 collectionOfCommands 的输出时,我得到:

“磁盘

0.2 0.00

0.00005

磁盘

0.2 0.00

鼠标 0.4 0.00002

磁盘 0.2 0.00

键盘 0.3 0.00004

磁盘 0.2 0.00

网络 0.5 0.0001"

显然这个输出是完全错误的,除了第一个输出“磁盘”。

非常感谢您的帮助,谢谢!!!!

4

1 回答 1

1

这是分解字符串的一种奇怪方式,尤其是因为您已经知道一致的格式。您使用 substr() 是否有特殊原因?尝试改用输入字符串流。

    #include <sstream>
    #include <string>
    ...

    istringstream iss(currentLine);

    getline(iss, deviceName, ' ');
    getline(iss, interruptProbability, ' ');
    getline(iss, interruptTime);
于 2013-02-07T20:58:33.110 回答