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


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


Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。该包提供了一个 IsGraphic() 函数,用于检查符文是否被 Unicode 定义为 Graphic。此类字符包括字母、标记、数字、标点符号、符号和空格,来自类别 L、M、N、 P、S 和 Z。要访问 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

相关用法


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