GO语言"strconv"包中"Quote"函数的用法及代码示例。
用法:
func Quote(s string) string
Quote 返回表示 s 的双引号 Go 字符串文字。返回的字符串对 IsPrint 定义的控制字符和不可打印字符使用 Go 转义序列(\t、\n、\xFF、\u0100)
例子:
package main
import (
"fmt"
"strconv"
)
func main() {
// This string literal contains a tab character.
s := strconv.Quote(`"Fran & Freddie's Diner ☺"`)
fmt.Println(s)
}
输出:
"\"Fran & Freddie's Diner\t☺\""
相关用法
- GO QuoteRuneToGraphic用法及代码示例
- GO QuoteRune用法及代码示例
- GO QuoteToGraphic用法及代码示例
- GO QuoteMeta用法及代码示例
- GO QuoteToASCII用法及代码示例
- 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大神的英文原创作品 Quote。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。