Go 语言圣经 7.14 示例: 基于标记的XML解码

7.14 示例: 基于标记的XML解码

知识点

  • 1.
  • 2.
  • 3.

代码

  • 章节中样例
func test_mark_xml()  {

    file, err := os.Open("issues2.html")
    if err != nil {
        fmt.Println(err)
        return
    }

    dec := xml.NewDecoder(file)

    var stack []string // stack of element names
    for {
        tok, err := dec.Token()
        if err == io.EOF {
            break
        } else if err != nil {
            fmt.Println("xmlselect: %v\n", err)
            os.Exit(1)
        }

        switch tok := tok.(type) {
        case xml.StartElement:
            stack = append(stack, tok.Name.Local) // push
        case xml.EndElement:
            stack = stack[:len(stack)-1] // pop
        case xml.CharData:
            if containsAll(stack, os.Args[1:]) {
                fmt.Printf("%s: %s\n", strings.Join(stack, " "), tok)
            }
        case xml.Comment:
            fmt.Println(tok.Copy() , "=======")
        }

    }
}
// containsAll reports whether x contains the elements of y, in order.
func containsAll(x, y []string) bool {
    for len(y) <= len(x) {
        if len(y) == 0 {
            return true
        }
        if x[0] == y[0] {
            y = y[1:]
        }
        x = x[1:]
    }
    return false
}
——不足之处,欢迎补充——

备注

《Go 语言圣经》

  • 学习记录所使用的GO版本是1.8
  • 学习记录所使用的编译器工具为GoLand
  • 学习记录所使用的系统环境为Mac os
  • 学习者有一定的C语言基础

代码仓库

猜你喜欢

转载自blog.csdn.net/liushihua147/article/details/80838135