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


Golang strconv.Quote()用法及代码示例


Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。该包提供了一个 Quote() 函数,用于查找表示 str 的 double-quoted Go 字符串文字,返回的字符串使用 Go 转义序列(\t、\n、\xFF、\u0100)来控制 IsPrint 定义的字符和不可打印字符.要访问 Quote() 函数,您需要在程序中导入 strconv 包。

用法:

func Quote(str string) string

参数:该函数接受一个字符串类型的参数,即 str。

返回值:此函数返回代表 str 的 double-quoted Go 字符串文字。

范例1:




// Golang program to illustrate strconv.Quote() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
    // Finding a double-quoted Go
    // string literal representing str
    // Using Quote() function
    str:= strconv.Quote(`" Hello 
     Welcome to GeeksforGeeks "`)
    fmt.Println(str)
  
}

输出:

"\" Hello \n     Welcome to GeeksforGeeks \""

范例2:


// Golang program to illustrate
// strconv.Quote() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
  
    // Finding a double-quoted Go string literal
    // Using Quote() function
    val1:= strconv.Quote(`"Hello! GFG   "`)
    fmt.Println("Result 1:", val1)
    fmt.Println("Length 1:", len(val1))
  
    val2:= strconv.Quote(`"Welcome!
        GeeksforGeeks"`)
    fmt.Println("Result 2:", val2)
    fmt.Println("Length 2:", len(val2))
  
}

输出:

Result 1: "\"Hello! GFG   \""
Length 1: 19
Result 2: "\"Welcome!\n        GeeksforGeeks\""
Length 2: 37



相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 How to use strconv.Quote() Function in Golang?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。