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


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


Go 语言提供内置支持,以通过 strconv 包实现与基本数据类型的字符串表示之间的转换。这个包提供了一个 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



相关用法


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