golang bytes包解读

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang bytes包解读相关的知识,希望对你有一定的参考价值。

golang中的bytes标准库实现了对字节数组的各种操作,与strings标准库功能基本类似。

功能列表:
1、字节切片 处理函数
(1)、基本处理函数
(2)、字节切片比较函数
(3)、前后缀检查函数
(4)、字节切片位置索引函数
(5)、分割函数
(6)、大小写处理函数
(7)、子字节切片处理函数
2、Buffer 对象
3、Reader 对象

基本处理函数
Contains() :返回是否包含子切片
func Contains(b, subslice []byte) bool

案例:技术分享图片
执行结果:
[email protected]  ~/Documents/project/src/test  go build strconv.go
[email protected]  ~/Documents/project/src/test  ./strconv
false
true
true
false

Count():计算子字节切片在字节切片中的重叠数量
func Count(s, sep []byte) int

案例:
技术分享图片
执行结果:
[email protected]  ~/Documents/project/src/test  go build strconv.go
[email protected]  ~/Documents/project/src/test  ./strconv
1
2
2
1

Map():首先将字节切片转化为 UTF-8编码的字符序列,然后使用 mapping 将每个Unicode字符映射为对应的字符,最后将结果保存在一个新的字节切片中。
func Map(mapping func(r rune) rune, s []byte) []byte

案例:
技术分享图片
执行结果:
[email protected]  ~/Documents/project/src/test  ./strconv
你好,我是杨国强!
你好,我叫杨国强!

以上是关于golang bytes包解读的主要内容,如果未能解决你的问题,请参考以下文章

GoLang之buffer与bytes包

golang ioutil 包源码阅读

golang binary包

golang 中通过strings/bytes/bufio 等包实现相关IO

Golang十六进制字符串和byte数组互转

golang --- time包常用函数以及基础的类型转换