當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


GO IsGraphic用法及代碼示例

GO語言"strconv"包中"IsGraphic"函數的用法及代碼示例。

用法:

func IsGraphic(r rune) bool

IsGraphic 報告符文是否被 Unicode 定義為圖形。此類字符包括 L、M、N、P、S 和 Zs 類別中的字母、標記、數字、標點符號和空格。

例子:

package main

import (
    "fmt"
    "strconv"
)

func main() {
    shamrock := strconv.IsGraphic('☘')
    fmt.Println(shamrock)

    a := strconv.IsGraphic('a')
    fmt.Println(a)

    bel := strconv.IsGraphic('\007')
    fmt.Println(bel)

}

輸出:

true
true
false

相關用法


注:本文由純淨天空篩選整理自golang.google.cn大神的英文原創作品 IsGraphic。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。