📌  相关文章
📜  如何在 Golang 中使用 strconv.IsPrint()函数?

📅  最后修改于: 2021-10-24 13:23:50             🧑  作者: Mango

Go 语言提供内置支持,以通过strconv Package实现基本数据类型的字符串表示的转换。这个包提供了一个IsPrint()函数,用于检查符文是否被 Go 定义为可打印与 unicode.IsPrint 相同的字母、数字、标点、符号和 ASCII 空间的定义。要访问 IsPrint()函数,您需要借助 import 关键字在程序中导入 strconv 包。

句法:

func IsPrint(x rune) bool

参数:该函数接受一个符文类型的参数,即x。

返回值:如果符文被 Unicode 定义为图形,则此函数返回 true。否则,返回false。

示例 1:

// Golang program to illustrate
// strconv.IsPrint() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
  
    // Checking whether the rune
    // is defined as printable by Go
    // Using IsPrint() function
    fmt.Println(strconv.IsPrint('?'))
    fmt.Println(strconv.IsPrint('b'))
  
}

输出:

true
true

示例 2:

// Golang program to illustrate
// strconv.IsPrint() Function
package main
    
import (
    "fmt"
    "strconv"
)
    
func main() {
   
    // Checking whether the rune 
    // is defined as printable by Go
    // Using IsPrint() function
    val1 := 'a'
    res1 := strconv.IsPrint(val1)
    fmt.Printf("Result 1: %v", res1)
       
    val2 := '?'
    res2 := strconv.IsPrint(val2)
    fmt.Printf("\nResult 2: %v", res2)
      
    val3 := '\001'
    res3 := strconv.IsPrint(val3)
    fmt.Printf("\nResult 3: %v", res3)
      
    
}

输出:

Result 1: true
Result 2: true
Result 3: false