私は初心者で、VBA Excel プログラミング ツールを使用しています。Excel ファイルの読み取り、Excel コンテンツの操作は、Filereader や Json 配列などの Web ツールよりも VBA の方がはるかに簡単です。
Json 配列ファイルに次のコンテンツがあります。
[
["TWE",6000,4545.5 ],
["RW",1000,256.3 ]
]
次の html ファイルから読み取り、値 253.6 のみを表示したいと思います。
手伝って頂けますか。
ここでHtmlファイルリーダーの例
<!DOCTYPE html>
<html>
<head>
<script>
function handleFileSelect()
{
if (window.File && window.FileReader && window.FileList && window.Blob) {
} else {
alert('The File APIs are not fully supported in this browser.');
return;
}
input = document.getElementById('fileinput');
if (!input) {
alert("Um, couldn't find the fileinput element.");
}
else if (!input.files) {
alert("This browser doesn't seem to support the `files` property of file inputs.");
}
else if (!input.files[0]) {
alert("Please select a file before clicking 'Load'");
}
else {
file = input.files[0];
fr = new FileReader();
fr.onload = receivedText;
fr.readAsText(file);
}
}
function receivedText() {
//result = fr.result;
document.getElementById('editor').appendChild(document.createTextNode(fr.result))
}
</script>
</head>
<body>
<input type="file" id="fileinput"/>
<input type='button' id='btnLoad' value='Load' onclick='handleFileSelect();'>
<div id="editor"></div>
</body>
</html>