📌  相关文章
📜  如何在 Golang 中使用 strconv.QuoteToGraphic()函数?

📅  最后修改于: 2021-10-25 02:54:04             🧑  作者: Mango

Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。该包提供了一个QuoteToGraphic()函数,用于查找表示 str 的双引号 Go字符串字面量,返回的字符串保留 IsGraphic 定义的 Unicode 图形字符,不变并使用 Go 转义序列 (\t, \n, \xFF , \u0100) 用于非图形字符。要访问 QuoteToGraphic()函数,您需要借助 import 关键字在程序中导入 strconv 包。

句法:

func QuoteToGraphic(str string) string

参数:该函数接受一个字符串类型的参数,即str。

返回值:该函数返回一个用双引号括起来的 Go字符串字面量,它代表 str。

让我们在给定示例的帮助下讨论这个概念:

示例 1:

// Golang program to illustrate 
// strconv.QuoteToGraphic() Function
package main

import (
    "fmt"
    "strconv"
)

func main() {

    // Finding a double-quoted Go 
    // string literal representing str
    // Using func QuoteToGraphic() function
    str := strconv.QuoteToGraphic("\u2665 Welcome GeeksforGeeks \u2665")
    fmt.Println (str)
    
}

输出:

"♥ Welcome GeeksforGeeks ♥"

示例 2:

// Golang program to illustrate
// strconv.QuoteToGraphic() Function
package main
 
import (
    "fmt"
    "strconv"
)
 
func main() {

    // Finding a double-quoted Go 
    // string literal representing rune
    // Using QuoteToGraphic() function
    val1 := strconv.QuoteToGraphic(`"I like Δ    "`)
    fmt.Println("Result 1: ", val1)
    fmt.Println("Length 1: ", len(val1))
   
    val2 := strconv.QuoteToGraphic("I love \u2666")
    fmt.Println("Result 2: ", val2)
    fmt.Println("Length 2: ", len(val2))
}

输出:

Result 1:  "\"I like Δ\t\""
Length 1:  17
Result 2:  "I love ♦"
Length 2:  12