GO语言"bytes"包中"IndexRune"函数的用法及代码示例。
用法:
func IndexRune(s []byte, r rune) int
IndexRune 将 s 解释为 UTF-8 编码的代码点序列。它返回给定符文在 s 中第一次出现的字节索引。如果 s 中不存在 rune,则返回 -1。如果 r 是 utf8 RuneError 它返回任何无效 UTF-8 字节序列的第一个实例。
例子:
package main
import (
"bytes"
"fmt"
)
func main() {
fmt.Println(bytes.IndexRune([]byte("chicken"), 'k'))
fmt.Println(bytes.IndexRune([]byte("chicken"), 'd'))
}
输出:
4 -1
相关用法
- GO Index.Lookup用法及代码示例
- GO IndexByte用法及代码示例
- GO IndexFunc用法及代码示例
- GO IndexAny用法及代码示例
- GO Index用法及代码示例
- GO Indent用法及代码示例
- GO Int.Scan用法及代码示例
- GO Ints用法及代码示例
- GO Intn用法及代码示例
- GO Info用法及代码示例
- GO Int.SetString用法及代码示例
- GO Inspect用法及代码示例
- GO IntsAreSorted用法及代码示例
- GO Itoa用法及代码示例
- GO IP.IsPrivate用法及代码示例
- GO IsDigit用法及代码示例
- GO IP.Equal用法及代码示例
- GO IsAbs用法及代码示例
- GO IP.IsLinkLocalMulticast用法及代码示例
- GO IsGraphic用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 IndexRune。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。