How in node to split string by newline ('\n')?

后端 未结 7 1864
南笙
南笙 2020-11-29 17:30

How in node to split string by newline (\'\\n\') ? I have simple string like var a = \"test.js\\nagain.js\" and I need to get [\"test.js\", \"again.js\"]<

7条回答
  •  [愿得一人]
    2020-11-29 18:11

    If the file is native to your system (certainly no guarantees of that), then Node can help you out:

    var os = require('os');
    
    a.split(os.EOL);
    

    This is usually more useful for constructing output strings from Node though, for platform portability.

提交回复
热议问题