gpt4 book ai didi

c++ - 配置解析器打印空白

转载 作者:行者123 更新时间:2023-11-30 02:45:10 25 4
gpt4 key购买 nike

只是为了好玩(谁知道我以后可能会用到它),我用 C++ 编写了一个配置文件解析器。它似乎并不困难,并且在我编写它时看不到任何问题。然而,当我测试它时,配置解析器没有捕获任何东西。我已经通过代码三遍了。谁能告诉我这个问题?

#include <istream> // for std::basic_stream<char> (aka std::string)
#include <string> // for std::basic_string<char> (aka std::string)
#include <map> // for std::map<t, t>
#include <cctype> // for character type testing, c style

std::map<std::string, std::string> configParser(std::istream &stream, const char &comment, const char &seperator) {
std::map<std::string, std::string> options; // to hold key, value pairs
std::string key, value; // so options[key] = value
bool seperatorFound; // for differentiating between key and value

while(stream) { // operate on the stream while its good
char current = stream.get(); // current will hold the next character returned from the stream

if(current == '\n') { // current is a newline
options[key] = value; // add the key, value pair as an option found
key = ""; // reset key
value = ""; // reset value
seperatorFound = false; // reset seperatorFound
continue; // jump back up to the top
}

else if(isspace(current)) { // current is one of: \r, \t, [SPACE]
continue; // eat the white space and jump back up to the top
}

else if(current == comment) { // current is a comment marker
getline(stream, key, '\n'); // eat the rest of the line. i use key since its alreay there
// no since in creating a string object to eat a line
key = ""; // reset key
continue; // jump back up to the top
}

else if(current == seperator) { // current is a seperator marker
seperatorFound = true; // update the seperator state
continue; // jump back up to the top
}

else { // current must be a symbol
if(!seperatorFound) { // haven't found the seperator yet. as a result, must be a key
key += current; // give key the next letter
continue; // jump back up to the top
}

// otherwise, it must be a value
value += current; // give value the next letter instead.
}
}

return options;
}

#include <iostream>
#include <sstream>

int main() {
std::map<std::string, std::string> options;
std::string line;

while(true) {
getline(std::cin, line);
std::istringstream stream(line);

options = configParser(stream, '#', ':');

for(auto iterator = options.begin(); iterator != options.end(); iterator++) {
std::cout<< iterator->first <<" : "<< iterator->second << std::endl;
}

std::cout<< std::endl << std::endl;
}
}

最佳答案

你的解析器大部分都可以工作,但包装器没有。 getline 不捕获 '\n',并且您的解析器不会从没有 '\n' 的行捕获结果。

将您的 main() 简化为:

int main() {
std::map<std::string, std::string> options;
std::string line;

options = configParser(std::cin, '#', ':');

for(auto iterator = options.begin(); iterator != options.end(); iterator++) {
std::cout<< iterator->first <<" : "<< iterator->second << std::endl;
}

std::cout<< std::endl << std::endl;
}

它大部分都有效。

关于c++ - 配置解析器打印空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24720421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com