当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO QuoteToGraphic用法及代码示例


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 \""

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 QuoteToGraphic。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。