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

📅  最后修改于: 2021-10-24 14:17:03             🧑  作者: Mango

Go 语言提供内置支持,以通过strconv Package实现基本数据类型的字符串表示的转换。这个包提供了一个IsGraphic()函数,用于检查符文是否被 Unicode 定义为图形。
此类字符包括来自 L、M、N、P、S 和 Zs 类的字母、标记、数字、标点符号、符号和空格。要访问 IsGraphic()函数,您需要借助 import 关键字在程序中导入 strconv 包。

句法:

func IsGraphic(x rune) bool

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

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

示例 1:

// Golang program to illustrate 
// strconv.IsGraphic() Function
package main

import (
    "fmt"
    "strconv"
)

func main() {

    // Checking whether the rune is 
    // defined as a Graphic by Unicode
    // Using IsGraphic() function
    fmt.Println (strconv.IsGraphic('♥'))
    fmt.Println (strconv.IsGraphic('b'))
      
}

输出:

true
true

示例 2:

// Golang program to illustrate 
// strconv.IsGraphic() Function
package main
 
import (
    "fmt"
    "strconv"
)
 
func main() {

    // Checking whether the rune
    // is defined as a Graphic by Unicode
    // Using IsGraphic() function
    val1 := 'a'
    res1 := strconv.IsGraphic(val1)
    fmt.Printf("Result 1: %v", res1)
    
    val2 := '♦'
    res2 := strconv.IsGraphic(val2)
    fmt.Printf("\nResult 2: %v", res2)
   
    val3 := '\001'
    res3 := strconv.IsGraphic(val3)
    fmt.Printf("\nResult 3: %v", res3) 
}

输出:

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