Home > 行の取得


Node.jsで特定の行をファイルから取得する方法

方法1: fsモジュールを使用する方法const fs = require('fs'); function getLineFromFile(filePath, lineNumber) { const fileContent = fs.readFileSync(filePath, 'utf-8'); const lines = fileContent.split('\n'); // 指定した行番号の行を取得する const line = lines[lineNumber - 1]; return line; } // 使用例 const filePath = 'path/>>More