Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。这个包提供了一个AppendQuoteRuneToASCII()函数,用于将一个单引号 Go字符字面量附加到 num 并返回扩展缓冲区,该字符表示由 QuoteRuneToASCII 生成的符文 x。或者换句话说, AppendQuoteRuneToASCII()函数用于将 Unicode字符转换为由“单引号”产生的 ASCII字符串,将结果附加到 num 的末尾并返回附加的 []byte。要访问 AppendQuoteRuneToASCII()函数,您需要在程序中导入 strconv 包。
句法:
func AppendQuoteRuneToASCII(num []byte, x rune) []byte
这里, num 是 []bytes 而 x 是符文字面量。 x 的结果将附加到 num 的末尾。
示例 1:
// Golang program to illustrate the
// strconv.AppendQuoteRuneToASCII() function
package main
import (
"fmt"
"strconv"
)
func main() {
// Converting Unicode characters to
// ASCII strings resulting from "single quotes"
// append the result to the end of the given []byte
// Using AppendQuoteRuneToASCII() function
val1 := []byte("Rune 1: ")
val1 = strconv.AppendQuoteRuneToASCII(val1, 'B')
fmt.Println(string(val1))
val2 := []byte("Rune 2: ")
val2 = strconv.AppendQuoteRuneToASCII(val2, '✈')
fmt.Println(string(val2))
}
输出:
Rune 1: 'B'
Rune 2: '\u2708'
示例 2:
// Golang program to illustrate the
// strconv.AppendQuoteRuneToASCII() function
package main
import (
"fmt"
"strconv"
)
func main() {
// Converting Unicode characters to ASCII
// strings resulting from "single quotes"
// append the result to the end of the given []byte
// Using AppendQuoteRuneToASCII() function
val1 := []byte("Rune 1: ")
val1 = strconv.AppendQuoteRuneToASCII(val1, 'c')
fmt.Println(string(val1))
fmt.Println("Length: ", len(val1))
fmt.Println("Capacity: ", cap(val1))
val2 := []byte("Rune 2: ")
val2 = strconv.AppendQuoteRuneToASCII(val2, '❄')
fmt.Println(string(val2))
fmt.Println("Length: ", len(val2))
fmt.Println("Capacity: ", cap(val2))
}
输出:
Rune 1: 'c'
Length: 11
Capacity: 16
Rune 2: '\u265b'
Length: 16
Capacity: 16