Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

텍스트 파일을 로드하고 파일에서 문자 수 찾기 - JavaScript

<시간/>

NodeJS 파일과 동일한 디렉토리에 있는 data.txt 파일이 있다고 가정합니다. 해당 파일의 내용이 -

라고 가정합니다.
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.

이 외부 텍스트 파일을 js 파일에 로드하고 이 파일의 문자 수를 반환하는 JavaScript 함수를 작성해야 합니다.

예시

이 함수의 코드를 작성해 봅시다 -

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