文件名称:go-charset:从 header 和 html content-type 获取内容字符集
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-16 05:29:36
Go
字符集 从 header 和 html content-type 获取内容字符集。 安装 go get -u github.com/mozillazg/go-charset 用法 s := `<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>` fmt . Println ( charset . Parse ( s , nil )) //gbk b := [] byte ( `<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>')` ) fmt . Println ( charset . Parse ( nil , b )) //gbk resp , err := http . Get ( "http://www.m
【文件预览】:
go-charset-master
----.gitignore(266B)
----.travis.yml(352B)
----charset_test.go(2KB)
----CHANGLOG.md(55B)
----LICENSE(1KB)
----example_test.go(813B)
----README.md(1KB)
----charset.go(1KB)
----.editorconfig(348B)