javascriptを使用して、コンテンツをCSV形式で読み込み、解析して1つの配列にロードできるようにしようとしています(合計、平均、標準偏差)のような数学演算を行います。私はテキストファイルを読んでいる限り、それを解析する助けが必要です。javascriptを使用してcsv txtファイルを読み込んで結果を配列にロード
ありがとうございます!
inputExample.txt
5,4,4,4,4
3,3,3,3,2
1,5,4,7,6
index.htmlを
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<input type="file" id="openFile" />
<br>
<pre id="fileContents"></pre>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
app.js
document.getElementById("openFile").addEventListener('change', function(){
var fr = new FileReader();
fr.onload = function(){
// document.getElementById("fileContents").textContent = this.result;
console.log(this.result);
}
fr.readAsText(this.files[0]);
})
が重複する可能性:http://stackoverflow.com/a/12289296/1743938 –