使用c++提取数据并存储在txt中

extract data using c++ and store in txt

我有一个具有以下数据格式的文本文件

 <create>
    <way id="-200341" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106862"/>
      <nd ref="-106343"/>
      <nd ref="-107240"/>
      <nd ref="-107241"/>
      <nd ref="-106863"/>
      <nd ref="-106858"/>
      <nd ref="-106866"/>
      <nd ref="-106263"/>
      <nd ref="-106868"/>
      <nd ref="-106857"/>
      <nd ref="-107242"/>
      <nd ref="-106867"/>
      <nd ref="-106865"/>
      <nd ref="-107243"/>
      <nd ref="-107244"/>
      <nd ref="-106864"/>
      <tag k="shelter" v="yes"/>
      <tag k="highway" v="footway"/>
    </way>
    <way id="-200340" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106853"/>
      <nd ref="-106852"/>
      <tag k="shelter" v="yes"/>
      <tag k="highway" v="footway"/>
    </way>
    <way id="-200277" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106228"/>
      <nd ref="8236806130"/>
      <tag k="highway" v="footway"/>
    </way>
    <way id="-200253" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106766"/>
      <nd ref="-106765"/>
      <nd ref="-106226"/>
      <nd ref="-106769"/>
      <nd ref="-106228"/>
      <nd ref="-106773"/>
      <nd ref="-106230"/>
      <nd ref="-106771"/>
      <nd ref="-106768"/>
      <tag k="highway" v="footway"/>
      <tag k="shelter" v="yes"/>
    </way>
    <way id="-200219" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-107148"/>
      <nd ref="-106747"/>
      <tag k="shelter" v="yes"/>
      <tag k="highway" v="footway"/>
    </way>
    <way id="-200218" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106766"/>
      <nd ref="-106755"/>
      <tag k="shelter" v="yes"/>
      <tag k="highway" v="footway"/>
    </way>
    <way id="-200066" version="0" timestamp="1970-01-01T00:00:00Z">
      <nd ref="-106755"/>
      <nd ref="-107148"/>
      <nd ref="-106760"/>
      <nd ref="-106764"/>
      <nd ref="-106762"/>
      <nd ref="-107115"/>
      <nd ref="-106197"/>
      <tag k="highway" v="footway"/>
      <tag k="shelter" v="yes"/>
    </way>
    <way id="543558082" version="1" timestamp="2017-11-29T19:30:02Z" uid="0" user="">
      <nd ref="1314909074"/>
      <nd ref="5254615443"/>
      <nd ref="5254615442"/>
      <nd ref="5254615441"/>
      <nd ref="5254615440"/>
      <nd ref="-106516"/>
      <nd ref="5254615439"/>
      <nd ref="5254615438"/>
      <nd ref="5254615437"/>
      <nd ref="5254615436"/>
      <nd ref="5254615435"/>
      <tag k="service" v="driveway"/>
      <tag k="highway" v="service"/>
      <tag k="oneway" v="yes"/>
    </way>

我有一个 unordered_map std::unordered_map<int, std::string> uMapID_feats{}; 这样声明的。

假设我的地图存储了所有这些 ID 号码 ref="XXXXX" 号码,并且其中存储了一个默认字符串,例如“未知地点”。

我想要做的是将 ID(称为“ref=XXXXXX”)映射到其下列出的标签。所以标签例如。对于第一个 ID ref=106862,与其关联的标签是 200341, shelter, highway, footway, yes

因此在地图中,前 3 对将如下所示:

"106862" , "200341,shelter,highway,footway,yes"  
"106343" , "200341,shelter,highway,footway,yes"
"107240" , "200341,shelter,highway,footway,yes"

有些集合比其他集合有更多的标签,有些只有 2 个标签,因此我希望将它们全部写入一个字符串并存储在这个 unordered_map 中,标签用逗号分隔。

我应该如何解析这些数据并将其正确存储在 unordered_map 中?

感谢任何帮助,谢谢!

使用 xml 解析库,例如 plugixml,或者您可以构建自己的解析库。

有很多库解析 xml。选择适合您需要的那个。 这可能对您有帮助:What XML parser should I use in C++?