Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。该包提供了一个 QuoteRuneToASCII() 函数,用于查找表示符文的 single-quoted Go 字符串文字,返回的字符串使用 Go 转义序列(\t、\n、\xFF、\u0100)来定义非 ASCII 字符和不可打印字符通过 IsPrint。要访问 QuoteRuneToASCII() 函数,您需要借助 import 关键字在程序中导入 strconv 包。
用法:
func QuoteRuneToASCII(rn rune) string
参数:此函数采用符文类型的一个参数,即 rn。
返回值:此函数返回代表符文的 single-quoted 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
相关用法
- Golang strconv.QuoteRune()用法及代码示例
- Golang strconv.Quote()用法及代码示例
- Golang strconv.QuoteRuneToGraphic()用法及代码示例
- Golang strconv.FormatBool()用法及代码示例
- Golang strconv.CanBackquote()用法及代码示例
- Golang strconv.FormatUint()用法及代码示例
- Golang strconv.IsGraphic()用法及代码示例
- Golang strconv.IsPrint()用法及代码示例
- Golang strconv.Itoa()用法及代码示例
- Golang strconv.QuoteToGraphic()用法及代码示例
- Golang strconv.QuoteToASCII()用法及代码示例
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 How to use strconv.QuoteRuneToASCII() Function in Golang?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。
