Golang 如何使用strconv.QuoteRune()函数
Go语言通过strconv包提供了内置支持,可以将基本数据类型转换为字符串表示形式,也可以从其中转换回来。该包提供了一个QuoteRune()函数,用于查找表示符文的单引号Go字符串文字,返回的字符串使用Go转义序列(\t,\n,\xFF,\u0100)来控制字符和由IsPrint定义的不可打印字符。要访问QuoteRune()函数,需要在程序中导入strconv包。
语法:
func QuoteRune(rn rune) string
参数: 该函数需要一个rune类型的参数,即rn。
返回值: 该函数返回一个表示符文的单引号Go字符串文字。
示例1:
// Golang program to illustrate
// strconv.QuoteRune() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a single-quoted Go
// string literal representing rune
// Using QuoteRune() function
r := strconv.QuoteRune('♥')
fmt.Println(r)
}
输出:
'♥'
示例2:
// Golang program to illustrate
// strconv.QuoteRune() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Finding a single-quoted Go
// string literal representing rune
// Using QuoteRune() function
val1 := strconv.QuoteRune('♣')
fmt.Println("Result 1: ", val1)
fmt.Println("Length 1: ", len(val1))
val2 := strconv.QuoteRune('→')
fmt.Println("Result 2: ", val2)
fmt.Println("Length 2: ", len(val2))
}
输出:
Result 1: '♣'
Length 1: 5
Result 2: '→'
Length 2: 5