2017-06-04 5 views
0

まず、私がここに来るのを手伝ってくれた人に感謝したいと思います。私のコードが動作し、テキストファイルから抽出されているいくつかの数値を出力することができます。今私は、テキストファイルに複数の行が抽出される必要がありますが、すべての行が "Numbers:"で始まるという問題に直面しています。すなわち、以下:Javascript - テキストファイルの行を複数の行で表示し、配列を出力します。

番号:(23.000,12.000)、(12.000,11.000)、

番号:(13.000,32.000)、(42.000,21.000)、

番号:(33.000,52.000)、 (22.000,31.000)、

テキストファイルに1行しかないときに番号を抽出することができます。「番号:」複数の行を抽出できますか? P.S.私は自分のコードをあまりにも変更することはできません。ありがとう。

<script type="text/javascript"> 

    var reader = new FileReader(); 

    function readText(that){ 

     if(that.files && that.files[0]){ 
      var reader = new FileReader(); 
      reader.onload = function (e) { 
       var output1=e.target.result; 
       var output2=e.target.result; 
       var output3=e.target.result; 
       var output4=e.target.result;   

//Reads a text file with a line Starting in "Numbers:" that is formated as 
following "Numbers: (23.000,12.000),(11.000,22.000), 
//multiple numbers read by 2      
       output1=(output1.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[1]).join("\n")* 2).toFixed(3); 
       output2=(output2.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[2]).join("\n")* 2).toFixed(3); 
       output3=(output3.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[3]).join("\n")* 2).toFixed(3); 
       output4=(output4.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[4]).join("\n")* 2).toFixed(3); 

var n1 = parseFloat(output1), 
n2 = parseFloat(output2), 
n3 = parseFloat(output3), 
n4 = parseFloat(output4), 

//I dont want to print if NaN or 0, that's the reason for list.push and string below 

if (n1) { 
list.push(n1); 
} 

if (n2) { 
list.push(n2); 
} 
if (n3) { 
list.push(n3); 
} 

if (n4) { 
list.push(n4); 
} 
//print my numbers "single line" only. Ideally I want to print multiple lines 

document.getElementById('inputTextToSave').innerHTML = list.toString().replace(/[^,]+,[^,]+,/g, '$&\n'); 

//prints the output as the following 
//(23.000,12.000) 
//(11.000,22.000)    

      };//end onload() 
      reader.readAsText(that.files[0]); 
     }//end if html5 filelist support 
    } 

答えて

1

このコードを試してください。 私は上記のコードを次のように変更作られています: -

  • リストの配列は、すべての行を格納するためにループの外にある複数行のためにそれを実行するためのforループの中にあなたのコードをラップ

    • を。

      入力: - - : 番号:(23.000,12.000)、(12.000,11.000)、 番号:(13.000,32.000)、(42.000、私は私のマシン上でこのコードをテストしている

    21.000)、

    出力: - 私はそれが役に立てば幸い 46,24、24,22、26,64、84,42

    JAVASCRIPT: -

    var reader = new FileReader(); 
    
        function readText(that){ 
    
         if(that.files && that.files[0]){ 
          var reader = new FileReader(); 
          reader.onload = function (e) { 
           // By lines 
           var lines = e.target.result.split('\n'); 
           var list = []; 
           for(var Fileline = 0; Fileline < lines.length; Fileline++){ 
            var output1 = lines[Fileline]; 
            var output2 = lines[Fileline]; 
            var output3 = lines[Fileline]; 
            var output4 = lines[Fileline]; 
            output1=(output1.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[1]).join("\n")* 2).toFixed(3); 
            output2=(output2.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[2]).join("\n")* 2).toFixed(3); 
            output3=(output3.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[3]).join("\n")* 2).toFixed(3); 
            output4=(output4.split("\n").filter(/./.test, /Numbers:/).map(line => line.split(/,|\(|\)/).filter(number => number != "")[4]).join("\n")* 2).toFixed(3); 
    
            var n1 = parseFloat(output1), 
            n2 = parseFloat(output2), 
            n3 = parseFloat(output3), 
            n4 = parseFloat(output4); 
    
    
            if (n1) { 
            list.push(n1); 
            } 
    
            if (n2) { 
            list.push(n2); 
            } 
            if (n3) { 
            list.push(n3); 
            } 
    
            if (n4) { 
            list.push(n4); 
            } 
           } 
    
    //print my numbers "single line" only. Ideally I want to print multiple lines 
    console.log(list); 
    document.getElementById('inputTextToSave').innerHTML = list.toString().replace(/[^,]+,[^,]+,/g, '$&\n'); 
    
    //prints the output as the following 
    //(23.000,12.000) 
    //(11.000,22.000)    
    
          };//end onload() 
          reader.readAsText(that.files[0]); 
         }//end if html5 filelist support 
        } 
    
  • 関連する問題