c ++获取文件的一部分

时间:2015-05-24 00:57:56

标签: c++ save loading

如何跳过文件的某些部分,然后ifstream直到达到某个字符?

例如,在文本文件中,写成:

'SaveNameExample'
variableExample = 5;

我如何仅获取没有'的SaveNameExample,将其存储为std::string变量,然后仅从下一行获取5,以另存为int变量?

1 个答案:

答案 0 :(得分:3)

这些方面应该有效:

string s = "";
char c = '';
int i = 0;

while(getline(fstream_name, temp)){
    for(int i = 0; i < temp.length(); i++){
        if(temp[i] != "'")
            s += temp[i];
        if(temp[i] >= x || temp[i] <= y) //Where x and y are ascii values for 0 and 9, respectively
            c = temp[i];
    }
}

i = atoi(c);

这只适用于某些情况,但你应该能够操纵它以适应你想要做的事情。