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


GO Unquote用法及代码示例


GO语言"strconv"包中"Unquote"函数的用法及代码示例。

用法:

func Unquote(s string)(string, error)

Unquote 将 s 解释为单引号、双引号或反引号 Go 字符串文字,返回 s 引用的字符串值。 (如果 s 是单引号,它将是 Go 字符文字;取消引用返回相应的 one-character 字符串。)

例子:

package main

import (
	"fmt"
	"strconv"
)

func main() {
	s, err := strconv.Unquote("You can't unquote a string without quotes")
	fmt.Printf("%q, %v\n", s, err)
	s, err = strconv.Unquote("\"The string must be either double-quoted\"")
	fmt.Printf("%q, %v\n", s, err)
	s, err = strconv.Unquote("`or backquoted.`")
	fmt.Printf("%q, %v\n", s, err)
	s, err = strconv.Unquote("'\u263a'") // single character only allowed in single quotes
	fmt.Printf("%q, %v\n", s, err)
	s, err = strconv.Unquote("'\u2639\u2639'")
	fmt.Printf("%q, %v\n", s, err)

}

输出:

"", invalid syntax
"The string must be either double-quoted", <nil>
"or backquoted.", <nil>
"☺", <nil>
"", invalid syntax

相关用法


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