gpt4 book ai didi

go - 谁能帮忙解析一下HCL?

转载 作者:IT王子 更新时间:2023-10-29 01:52:04 26 4
gpt4 key购买 nike

我将使用 this repository 解析 HCL 配置文件.

package main

import (
"fmt"
hclParser "github.com/hashicorp/hcl/hcl/parser"
)

const (
EXAMPLE_CONFIG_STRING = "log_dir = \"/var/log\""
)

func main() {
// parse HCL configuration
if astFile, err := hclParser.Parse([]byte(EXAMPLE_CONFIG_STRING)); err == nil {
fmt.Println(astFile)
} else {
fmt.Println("Parsing failed.")
}
}

在这种情况下,我如何解析 log_dir

最佳答案

github.com/hashicorp/hcl/hcl/parser 是一个低级包。使用 high-level API相反:

package main

import (
"fmt"

"github.com/hashicorp/hcl"
)

type T struct {
LogDir string `hcl:"log_dir"`
}

func main() {
var t T
err := hcl.Decode(&t, `log_dir = "/var/log"`)
fmt.Println(t.LogDir, err)
}

如果你真的想自己处理 AST,也可以使用 DecodeObject。

关于go - 谁能帮忙解析一下HCL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49797290/

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