npm.io
0.1.0 • Published 8 years ago

gbk-string

Licence
MIT
Version
0.1.0
Deps
1
Size
5 kB
Vulns
0
Weekly
0
Stars
16

gbk-string

GBK 编码/解码
示例:测试文本 -> %B2%E2%CA%D4%CE%C4%B1%BE

背景

使用 node 爬网站数据时,个别接口需要传入 GBK 编码后的字符串。

安装

$ npm install gbk-string -S

使用

此插件仅可运行在 Node 环境下,不支持浏览器环境。

const { encodeGBK, decodeGBK } = require('gbk-string');

encodeGBK('测试文本');
//=> "%B2%E2%CA%D4%CE%C4%B1%BE"

decodeGBK('%B2%E2%CA%D4%CE%C4%B1%BE');
//=> "测试文本"

或者:

const gbk = require('gbk-string');

gbk.encodeGBK('测试文本');
//=> "%B2%E2%CA%D4%CE%C4%B1%BE"

gbk.decodeGBK('%B2%E2%CA%D4%CE%C4%B1%BE');
//=> "测试文本"

API

encodeGBK(text)
text

Type: string

decodeGBK(str)
str

Type: string

依赖

License

MIT zh-rocco

Keywords