我正在使用libXML的SAX接口在C ++中编写XML解析器应用程序。
<abc value="xyz "pqr""/>
如何解析此属性?
我尝试使用
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)
,递增属性参数(并检查&#34; 以指示属性值的结束)。
它适用于属性值中出现的*"*
以外的所有属性。
解析这些属性值的正确方法是什么?
由于
答案 0 :(得分:6)
尝试此功能:
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);