Unicode是ASCII的超集,包含世界上書寫係統中存在的所有字符,是目前正在遵循的字符集。 Unicode係統中的每個字符都由Unicode代碼點唯一標識,該代碼點在Golang中稱為符文。要了解有關符文的更多信息,請閱讀文章Golang字符串中的符文。ContainsRune()Golang中的函數用於檢查給定的字符串是否包含指定的符文。
用法:
func ContainsRune(s string, r rune) bool
在這裏,str是字符串,r是s符文。
如果字符串中存在由符文指定的字符,則它將返回布爾值true,否則返回false。
範例1:
// Golang program to illustrate the
// strings.ContainsRune() Function
package main
import (
"fmt"
"strings"
)
func main() {
// using the function
fmt.Println(strings.ContainsRune("geeksforgeeks", 97))
}
輸出:
false
上麵的代碼將返回false,因為該符文指定的字符或在傳遞的字符串“geeksforgeeks”中不存在‘a’的Unicode代碼點97。
範例2:
// Golang program to illustrate the
// strings.ContainsRune() Function
package main
import (
"fmt"
"strings"
)
func main() {
str:= "geeksforgeeks"
// using the function
if strings.ContainsRune(str, 103) {
fmt.Println("Yes")
} else {
fmt.Println("No")
}
}
輸出:
Yes
相關用法
- Golang math.Lgamma()用法及代碼示例
- Golang math.Float64bits()用法及代碼示例
- Golang atomic.AddInt64()用法及代碼示例
- Golang atomic.StoreInt64()用法及代碼示例
- Golang reflect.FieldByIndex()用法及代碼示例
- Golang string.Contains用法及代碼示例
- Golang bits.Sub()用法及代碼示例
- Golang io.PipeWriter.CloseWithError()用法及代碼示例
- Golang time.Round()用法及代碼示例
- Golang reflect.AppendSlice()用法及代碼示例
- Golang reflect.ChanOf()用法及代碼示例
- Golang flag.Bool()用法及代碼示例
- Golang time.Sleep()用法及代碼示例
- Golang time.Time.Year()用法及代碼示例
- Golang reflect.DeepEqual()用法及代碼示例
- Golang reflect.Indirect()用法及代碼示例
- Golang reflect.CanAddr()用法及代碼示例
- Golang reflect.CanInterface()用法及代碼示例
- Golang reflect.CanSet()用法及代碼示例
- Golang reflect.Cap()用法及代碼示例
注:本文由純淨天空篩選整理自supergops大神的英文原創作品 strings.ContainsRune() Function in Golang with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。