从name.txt
读取文本,处理后保存为 pinyin.txt
汉字转拼音规则:
- 首字全拼,
- 后续每个字首字母,
- 全部小写
初始化环境
npm init
安装依赖
npm i cnchar
js逻辑代码
main.js 执行:nodde main.js
const cnchar = require('cnchar'); // 拼音工具
const fs = require("fs"); // 文件模块
const nameFile = './name.txt'; // 源文件
const namePinyinFile = './pinyin.txt'; // 结果文件
try {
// 同步读取
const str = fs.readFileSync(nameFile, 'utf8');
// 按行拆分数组
const nameArr = str.split('\n');
// 遍历数组
var pinyinArr = nameArr.map(v=>cnchar.spell(v[0],'low') + cnchar.spell(v.substr(1),'first','low'));
// 同步写文件
fs.writeFileSync(namePinyinFile, pinyinArr.join('\n'), 'utf8')
} catch (err) {
console.error(err)
}
name.txt
笑虾
小侠
耀眼的笨笨
笨笨
pinyin.txt
xiaox
xiaox
yaoydbb
benb
参考资料
功能全面、多端支持的汉字拼音笔画js库 cnchar
同步读取文件 fs.readFileSync(path[, options])
同步写入文件 fs.writeFileSync(file, data[, options])