Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。这个包提供了一个 CanBackquote() 函数,用于检查字符串 str 是否可以不变地表示为单行反引号字符串,除了制表符之外没有控制字符。要访问 CanBackquote() 函数,您需要借助 import 关键字在程序中导入 strconv 包。
用法:
func CanBackquote(str string) bool
参数:该函数接受一个字符串类型的参数,即 str。
返回值:如果字符串 str 可以不变地表示为单行反引号字符串,则此函数返回 true,否则返回 false。
让我们在给定示例的帮助下讨论这个概念:
范例1:
// Golang program to illustrate
// strconv.CanBackquote() Function
package main
import (
"fmt"
"strconv"
)
func main() {
// Checking whether the given
// string can be represented
// unchanged as a single-line
// backquoted string
// Using CanBackquote() function
fmt.Println(strconv.CanBackquote("Welcome to GeeksforGeeks"))
fmt.Println(strconv.CanBackquote("`Welcome to GeeksforGeeks`"))
fmt.Println(strconv.CanBackquote(`"Welcome to GeeksforGeeks"`))
}
输出:
true false true
范例2:
// Golang program to illustrate
// strconv.CanBackquote() Function
package main
import (
"fmt"
"strconv"
)
// Main function
func main() {
// Checking whether the given
// string can be represented
// unchanged as a single-line
// backquoted string
// Using CanBackquote() function
res:= strconv.CanBackquote("Welcome to GeeksforGeeks")
if res == true {
fmt.Println("The given string is unchanged "+
"single-line backquoted string.")
} else {
fmt.Println("The given string is a "+
"changeable single-line backquoted string.")
}
}
输出:
The given string is unchanged single-line backquoted string.
相关用法
- Golang strconv.QuoteRune()用法及代码示例
- Golang strconv.Quote()用法及代码示例
- Golang strconv.QuoteRuneToGraphic()用法及代码示例
- Golang strconv.FormatBool()用法及代码示例
- Golang strconv.FormatUint()用法及代码示例
- Golang strconv.IsGraphic()用法及代码示例
- Golang strconv.IsPrint()用法及代码示例
- Golang strconv.Itoa()用法及代码示例
- Golang strconv.QuoteToGraphic()用法及代码示例
- Golang strconv.QuoteRuneToASCII()用法及代码示例
- Golang strconv.QuoteToASCII()用法及代码示例
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 How to use strconv.CanBackquote() Function in Golang?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。