我正在尝试使用xml包(http://golang.org/pkg/xml/)在Go中读取XML文件。
我的问题是我不确定如何读取元素的内部文本。我将文档加载到xml.Parser中,然后调用parser.Token()在文件中移动。我检查一下令牌使用以下内容:
token, err := parser.Token()
if element, ok := token.(xml.StartElement); ok {
// process as a start element. I can read the element name and attributes here
}
if charData, ok := token.(xml.CharData); ok {
// process as text. How do I read the text data?
}
xml.CharData类型定义为:
type CharData []byte
但我似乎无法将charData变量用作字节数组来转换为字符串。为CharData定义的唯一方法是复制令牌,但这仅给出CharData变量的另一个副本。我已经尝试了一些方法,但是它们没有编译:
innerText := string(charData)
innerText := string(charData[0:])
innerText := string(charData[0]) // this compiled but is not what I want
还有另一种方式将xml.CharData变量视为字节的一部分吗?
相关分类