我如何比较节点名称libxml2?

时间:2012-12-25 17:37:18

标签: xml libxml2

我使用g ++和libxml2

static void print_element_names(xmlNode * a_node,xmlDoc * doc) {               
  xmlNode *cur_node = NULL;
  const char *c= "city";
  xmlChar *name;

  for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
    if (cur_node->type == XML_ELEMENT_NODE) {
      std::cout<<convert(cur_node)<<std::endl;
    }

    if (convert(cur_node)==c){
      //work but not equal with city
      std::cout<<"Found node"<<std::endl;
    }
    print_element_names(cur_node->children,doc);
  }
}

char * convert(xmlNode * a_node) {
  char* a = (char *)a_node->name;
  return a;
}

结果是

address_book

名称

地址

城市

状态

拉​​链

电话


它不等于“城市”也许是因为xmlChar和char。 如何将nodename与char进行比较?

1 个答案:

答案 0 :(得分:1)

你的convert(cur_node)==c正在比较指针而不是比较字符串内容,这不是比较C ++中字符串的方法。

尝试使用strncmp比较两者。

http://www.cplusplus.com/reference/cstring/strncmp/