文件名称:检测BOM并根据需要删除-Golang开发
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-15 11:36:06
Golang Text Processing
utfbom软件包utfbom实现了BOM(Unicode字节顺序标记)的检测并根据需要删除。 它还可以返回BOM表检测到的编码。 安装go get -u github.com/dimchansky utfbom软件包utfbom实现了BOM(Unicode字节顺序标记)的检测并根据需要删除。 它还可以返回BOM表检测到的编码。 安装go get -u github.com/dimchansky/utfbom示例包main import(“ bytes”“ fmt”“ io / ioutil”“ github.com/dimchansky/utfbom”)func main(){trySkip([] byte(“ \ xEF \ xBB \ xBFhello“))trySkip([] byte(” hello“))} func trySkip(byteData [] byte){fmt.Println(” Input:“,byteData)//仅跳过BOM outpu
【文件预览】:
utfbom-master
----.gitignore(474B)
----go.mod(36B)
----.travis.yml(800B)
----LICENSE(11KB)
----utfbom_test.go(7KB)
----README.md(2KB)
----utfbom.go(4KB)