Golang 检查符文是否是一个空格字符
Rune是ASCII的一个超集,或者说它是int32的一个别名。它容纳了世界上所有可用的书写系统中的字符,包括重音和其他变音符号,控制代码,如TAB和回车,并为每个字符分配一个标准号。这个标准数字在Go语言中被称为Unicode码位或符文。
在 IsSymbol() 函数的帮助下,你可以检查给定的符文是否是Unicode的白色空间属性所定义的空间字符。如果给定的符文是一个空格字符,该函数返回真,如果给定的符文不是一个空格字符,则返回假。这个函数是在Unicode包中定义的,所以要使用这个方法,你需要在你的程序中导入Unicode包。
语法
func IsSpace(r rune) bool
这个函数的返回类型是布尔型。让我们借助给定的例子来讨论这个概念。
例1 :
// Go program to illustrate how to check
// the given rune is a space character
// or not
package main
import (
"fmt"
"unicode"
)
// Main function
func main() {
// Creating rune
rune_1 := 'g'
rune_2 := 'e'
rune_3 := '\t'
rune_4 := '\n'
rune_5 := 'S'
// Checking the given rune is
// a space character or not
// Using IsSpace () function
res_1 := unicode.IsSpace(rune_1)
res_2 := unicode.IsSpace(rune_2)
res_3 := unicode.IsSpace(rune_3)
res_4 := unicode.IsSpace(rune_4)
res_5 := unicode.IsSpace(rune_5)
// Displaying results
fmt.Println(res_1)
fmt.Println(res_2)
fmt.Println(res_3)
fmt.Println(res_4)
fmt.Println(res_5)
}
输出
false
false
true
true
false
例2 :
// Go program to illustrate how to check
// the given rune is a space character
// or not
package main
import (
"fmt"
"unicode"
)
// Main function
func main() {
// Creating a slice of rune
val := []rune{'g', '\f', '\v', '&', ' '}
// Checking the given rune is
// a space character or not
// Using IsSpace () function
for i := 0; i < len(val); i++ {
if unicode.IsSpace(val[i]) == true {
fmt.Println("It is a space character")
} else {
fmt.Println("It is not a space character")
}
}
}
输出
It is not a space character
It is a space character
It is a space character
It is not a space character
It is a space character