首頁 > 後端開發 > Golang > 如何從 AST 取消引用 Go 字串文字?

如何從 AST 取消引用 Go 字串文字?

Barbara Streisand
發布: 2024-12-05 13:07:10
原創
305 人瀏覽過

How to Unquote Go String Literals from an AST?

從語法樹取消引用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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板