Golang 如何使用strconv.QuoteRuneToASCII()函数
Go语言提供内置支持,通过 strconv包 实现基本数据类型的字符串表示和转换。该包提供了一个 QuoteRuneToASCII()函数 ,它用于查找表示rune的单引号Go字符串文字,返回的字符串使用Go转义序列(\t、\n、\xFF、\u0100)来表示非ASCII字符和由IsPrint定义的非可打印字符。要访问QuoteRuneToASCII()函数,您需要使用import关键字在程序中导入strconv包。
语法:
func QuoteRuneToASCII(rn rune) string
参数: 该函数采用一个rune类型的参数,即rn。
返回值: 该函数返回一个表示rune的单引号Go字符串文字。
让我们通过以下示例来解释这个概念:
示例1:
// Golang program to illustrate
// strconv.QuoteRuneToASCII() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a single-quoted Go
// string literal representing rune
// Using QuoteRuneToASCII() function
r := strconv.QuoteRuneToASCII('♥')
fmt.Println (r)
}
输出:
'\u2665'
示例2:
// Golang program to illustrate
// strconv.QuoteRuneToASCII() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a single-quoted Go
// string literal representing rune
// Using QuoteRuneToASCII() function
val1 := strconv.QuoteRuneToASCII('♣')
fmt.Println("Result 1: ", val1)
fmt.Println("Length 1: ", len(val1))
val2 := strconv.QuoteRuneToASCII('→')
fmt.Println("Result 2: ", val2)
fmt.Println("Length 2: ", len(val2))
}
输出:
Result 1: '\u2663'
Length 1: 8
Result 2: '\u2192'
Length 2: 8