gpt4 book ai didi

c++ - 在 libXML sax 解析器(C++)中获取属性值的正确方法是什么?

转载 作者:太空狗 更新时间:2023-10-29 20:25:08 25 4
gpt4 key购买 nike

我正在使用 libXML 的 SAX 接口(interface)用 C++ 编写 XML 解析器应用程序。

<abc value="xyz &quot;pqr&quot;"/>

我如何解析这个属性?

我试过用

void startElementNsSAX2Func(void * ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar ** namespaces, int nb_attributes, int nb_defaulted, const xmlChar ** attributes)

,递增属性参数(并检查 " 以指示属性值的结尾)。

它适用于属性值中出现的除 *"* 之外的所有属性。

解析这些属性值的正确方法是什么?

谢谢

最佳答案

试试这个函数:

xmlChar *getAttributeValue(char *name, const xmlChar ** attributes,
int nb_attributes)
{
int i;
const int fields = 5; /* (localname/prefix/URI/value/end) */
xmlChar *value;
size_t size;
for (i = 0; i < nb_attributes; i++) {
const xmlChar *localname = attributes[i * fields + 0];
const xmlChar *prefix = attributes[i * fields + 1];
const xmlChar *URI = attributes[i * fields + 2];
const xmlChar *value_start = attributes[i * fields + 3];
const xmlChar *value_end = attributes[i * fields + 4];
if (strcmp((char *)localname, name))
continue;
size = value_end - value_start;
value = (xmlChar *) malloc(sizeof(xmlChar) * size + 1);
memcpy(value, value_start, size);
value[size] = '\0';
return value;
}
return NULL;
}

你可以这样使用它:

char *value = getAttributeValue("value", nb_attributes, attributes);
printf("%s\n", value);
free(value);

关于c++ - 在 libXML sax 解析器(C++)中获取属性值的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24785178/

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