1

这是我为这个问题想出的简单的东西。我对它并不完全满意,我认为这是一个帮助改进我对 STL 和基于流的编程的使用的机会。

std::wifstream file(L"\\Windows\\myini.ini");
if (file)
{
  bool section=false;
  while (!file.eof())
  {
    std::wstring line;
    std::getline(file, line);
    if (line.empty()) continue;

    switch (line[0])
    {
      // new header
      case L'[':
      {
        std::wstring header;
        size_t pos=line.find(L']');
        if (pos!=std::wstring::npos)
        {
          header=line.substr(1, pos);
          if (header==L"Section")
            section=true;
          else
            section=false;
        }
      }
  break;
      // comments
      case ';':
      case ' ':
      case '#':
      break;
      // var=value
      default:
      {
        if (!section) continue;

// what if the name = value does not have white space?
// what if the value is enclosed in quotes?
        std::wstring name, dummy, value;
        lineStm >> name >> dummy;
        ws(lineStm);
        WCHAR _value[256];
        lineStm.getline(_value, ELEMENTS(_value));
        value=_value;
      }
    }
  }
}

您将如何改进这一点?请不要推荐替代库 - 我只想要一个简单的方法来从 INI 文件中解析出一些配置字符串。

4

3 回答 3

3

// 如果 name = value 没有空格怎么办?
// 如果值用引号括起来怎么办?

我会使用 boost::regex 来匹配每种不同类型的元素,例如:

boost::smatch matches;
boost::regex name_value("(\S+)\s*=\s*(\S+)");
if(boost::regex_match(line, matches, name_value))
{
    name = matches[1];
    value = matches[2];
}

正则表达式可能需要一些调整。

我还将用 std::getline 替换 de stream.getline,摆脱静态 char 数组。

于 2008-09-29T01:18:10.283 回答
1

这:

for (size_t i=1; i<line.length(); i++)
        {
          if (line[i]!=L']')
            header.push_back(line[i]);
          else
            break;
        }

应该通过调用 wstrchr、wcschr、WSTRCHR 或其他东西来简化,具体取决于您所在的平台。

于 2008-09-28T23:32:38.197 回答
1

// 如何一次性将一行变成一个字符串?

使用标准字符串标头中的(非成员)getline函数。

于 2008-09-29T00:26:41.280 回答