从语法树中取消引用 Go 字符串文字
遍历 Go 语法树时,可能需要提取字符串的实际值文字表示为 ast.BasicLit 节点,Kind 设置为 token.STRING。但是,该节点最初包含表示字符串的 Go 代码,而不是其文字值。
解决方案:
将 Go 字符串文字代码转换为其实际值,使用 strconv.Unquote() 函数。该函数删除带引号的字符串中的引号,从而获得原始字符串值。
注意:
strconv.Unquote() 只能取消引号括起来的字符串引号(单引号或双引号)。如果字符串文字没有用引号引起来,则需要在使用该函数之前手动添加它们。
示例:
import ( "fmt" "strconv" ) func main() { // Given a quoted string quotedString := "`Hi`" // Unquote it unquotedString, err := strconv.Unquote(quotedString) if err != nil { fmt.Println("Error:", err) } else { fmt.Println(unquotedString) // Prints "Hi" } // Given an unquoted string unquotedString2 := "Hi" // Add quotes and unquote it quotedString2 := strconv.Quote(unquotedString2) unquotedString2, err = strconv.Unquote(quotedString2) if err != nil { fmt.Println("Error:", err) } else { fmt.Println(unquotedString2) // Also prints "Hi" } }
以上是如何从 AST 中取消引用 Go 字符串文字?的详细内容。更多信息请关注PHP中文网其他相关文章!