英文:
Golang - How to extract part of an XML file as a string?
问题
我的 XML 大致如下所示:
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
我知道如何通过 xml.Unmarshal 函数将此代码分离,但是否有办法仅对特定深度执行 Unmarshal 操作?例如,如果我想获取一个字符串,该字符串为 "<c><d>TEXT</c></d>" 并将其传递给另一个函数,有没有办法实现?我尝试给 <b> 添加一个子字符集对象,但它仍然尝试解析其余的 XML...
英文:
My XML looks something like this:
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
I know how to separate this code via the xml.Unmarshal function, but is there any way to perform the Unmarshal action only to a certain depth? For example, if I wanted to get a string that says "<c><d>TEXT</c></d>" and pass that into another function? I tried giving <b> a child charset object, but it still tries to parse the rest of the XML...
答案1
得分: 10
我认为这是你要求的内容(考虑到你的评论)。
package main
import (
"encoding/xml"
"fmt"
)
func main() {
type Result struct {
Value string `xml:"b>c>d"`
}
v := Result{"none"}
data := `
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
`
err := xml.Unmarshal([]byte(data), &v)
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("Value: %v\n", v.Value)
}
输出:
Value: TEXT
更新:根据lanZG的评论
func main() {
type InnerResult struct {
Value string `xml:",innerxml"`
}
type Result struct {
B InnerResult `xml:"b"`
}
v := Result{InnerResult{"none"}}
data := `
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
`
err := xml.Unmarshal([]byte(data), &v)
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("Value: %v\n", v.B.Value)
}
输出:
Value:
<c>
<d>TEXT</d>
</c>
英文:
I think this is what you are asking (consider your comment as well).
package main
import (
"encoding/xml"
"fmt"
)
func main() {
type Result struct {
Value string `xml:"b>c>d"`
}
v := Result{"none"}
data := `
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
`
err := xml.Unmarshal([]byte(data), &v)
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("Value: %v\n", v.Value)
}
Output:
Value: TEXT
UPDATE: after lanZG's comment
func main() {
type InnerResult struct {
Value string `xml:",innerxml"`
}
type Result struct {
B InnerResult `xml:"b"`
}
v := Result{InnerResult{"none"}}
data := `
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
`
err := xml.Unmarshal([]byte(data), &v)
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("Value: %v\n", v.B.Value)
}
Output:
Value:
<c>
<d>TEXT</d>
</c>
答案2
得分: 2
你可以使用嵌套的 XML 标签来简化 xml.Unmarshal
的操作。
以下是示例代码的链接:http://play.golang.org/p/XtCX7Dh45u
英文:
You can use nested xml tags to make it easier with xml.Unmarshal
here is how it would work: http://play.golang.org/p/XtCX7Dh45u
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论