如何在JavaScript中将文件的内容转换为数组?

时间:2017-02-01 14:37:53

标签: javascript arrays

我有一个名为“Temperats.txt”的文件。它包括文字:

22,
21,
23

如何将文件内容复制到JavaScript数组中?

var temperatures = [22, 21, 23];

3 个答案:

答案 0 :(得分:1)

如果您的文字看起来像这样

var txt = "22,21,23";

你可以把它转换成这样的数组

var array = txt.split(',');

或者,如果还有新行

var array = txt.split(',\n');

答案 1 :(得分:0)

您的文字

localparam [7:0] packed         = '0;
localparam      unpacked [3:0]  = packed[3:0]; <-- Needs to be casted to an unpacked array

module1 #(unpacked) myModule1(...); <--- The parameter here needs to be of unpacked type

转换为数组

var array = mytxt .split(&#39;,&#39;);

答案 2 :(得分:0)

var str = "22,\
           21,\
           23";

// this will remove spaces as well
var result = str.split(/\s*,\s*/);

console.log(result);