如何从 Go AST 检索字符串文字值
遍历 Go 语法树以识别对采用字符串的特定函数的调用时文字参数,您可能会遇到 Kind == token.STRING 的 ast.BasicLit 节点。但是,该节点的 value 字段包含 Go 语法,而不是它表示的实际字符串值。
要获取字符串的文字值,请使用 strconv.Unquote() 函数。但请注意,此函数仅取消引号括起来的字符串。如果 ast.BasicLit 中的字符串未加引号,则必须手动在其前面添加适当的引号字符。
示例:
package main import ( "fmt" "go/ast" "go/parser" "go/token" "strconv" ) func main() { fset := token.NewFileSet() node, _ := parser.ParseExpr(`` + "Hello World!" + `"`) switch node := node.(type) { case *ast.BasicLit: fmt.Println(strconv.Unquote(node.Value)) // Prints "Hello World!" } }
输出:
Hello World!
以上是如何从 Go AST 的 `ast.BasicLit` 节点中提取文字字符串值?的详细内容。更多信息请关注PHP中文网其他相关文章!