Javascript
 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

  1. JavaScriptのファイルとFileReader?

    以下は、JavaScriptでファイルとfileReaderを表示するコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>

  2. 文字列内の文字数を検索するPHPプログラム

    文字列内の文字数を見つけるためのPHPコードは次のとおりです- 例 <?php    $my_string = "Hi there, this is a sample ";    $len = mb_strlen($my_string);    print_r("The number of characters in the string is ");    echo $len; ?> 出力 The number of characters in the stri