GO语言"strconv"包中"QuoteToGraphic"函数的用法及代码示例。
用法:
func QuoteToGraphic(s string) string
QuoteToGraphic 返回表示 s 的双引号 Go 字符串文字。返回的字符串保留由 IsGraphic 定义的 Unicode 图形字符不变,并对非图形字符使用 Go 转义序列(\t、\n、\xFF、\u0100)。
例子:
package main
import (
"fmt"
"strconv"
)
func main() {
s := strconv.QuoteToGraphic("☺")
fmt.Println(s)
// This string literal contains a tab character.
s = strconv.QuoteToGraphic("This is a \u263a \u000a")
fmt.Println(s)
s = strconv.QuoteToGraphic(`" This is a ☺ \n "`)
fmt.Println(s)
}
输出:
"☺" "This is a ☺\t\n" "\" This is a ☺ \\n \""
相关用法
- GO QuoteToASCII用法及代码示例
- GO QuoteRuneToGraphic用法及代码示例
- GO QuoteRune用法及代码示例
- GO Quote用法及代码示例
- GO QuoteMeta用法及代码示例
- GO QuoteRuneToASCII用法及代码示例
- GO QueryEscape用法及代码示例
- GO QueryUnescape用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Encode用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO Value用法及代码示例
- GO StreamWriter用法及代码示例
- GO Fscanln用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 QuoteToGraphic。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。