加载文本文件并在文件中查找字符数 - JavaScript
假设我们有一个 data.txt 文件,它与我们的 NodeJS 文件位于同一目录中。假设该文件的内容为 -
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s.
我们需要编写一个 JavaScript 函数,该函数将此外部链接文件加载到我们的 js 文件中,并返回此文件中的字符数。
示例
我们来为这个函数编写代码 -
const fs = require('fs');
const requireFile = async () => {
const data = fs.readFileSync('./data.txt', 'utf-8');
const len = data.length;
return len;
};
requireFile().then(res => console.log(res)).catch(err => {
console.log('some error occured');
})输出
在控制台中输出: -
399
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 程序设计
C++
C#
MongoDB
MySQL
Javascript
PHP