Golang 如何使用strconv.QuoteToASCII()函数
Go语言提供了内置支持,可以通过strconv包实现从基本数据类型的字符串表示形式到对象之间的转换。该包提供了一个QuoteToASCII()函数,它用于查找表示str的双引号Go字符串文字,返回的字符串使用Go转义序列(\t,\n,\xFF,\u0100)对非ASCII字符和由IsPrint定义的不可打印字符进行编码。要访问QuoteToASCII()函数,您需要使用import关键字在程序中导入strconv包。
语法:
func QuoteToASCII(str string) string
参数: 此函数使用一个string类型的参数,即str。
返回值: 此函数返回一个表示str的双引号Go字符串文字。
让我们通过给定的示例来讨论这个概念:
示例1:
// Golang program to illustrate
// strconv.QuoteToASCII() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a double-quoted Go
// string literal representing str
// Using QuoteToASCII() function
str := strconv.QuoteToASCII(`"♥ Welcome GeeksforGeeks ♥ "`)
fmt.Println (str)
}
输出:
"\"\u2665 Welcome GeeksforGeeks \u2665 \""
示例2:
// Golang program to illustrate
// strconv.QuoteToASCII() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a double-quoted Go
// string literal representing rune
// Using QuoteToASCII() function
val1 := strconv.QuoteToASCII(`"I like Δ "`)
fmt.Println("Result 1: ", val1)
fmt.Println("Length 1: ", len(val1))
val2 := strconv.QuoteToASCII(`"I love ♦"`)
fmt.Println("Result 2: ", val2)
fmt.Println("Length 2: ", len(val2))
}
输出:
Result 1: "\"I like \u0394\t\""
Length 1: 21
Result 2: "\"I love \u2666\""
Length 2: 23