在 NodeJS 中迭代字符串行
我从 NodeJS 中的 child_process.exec()
获得一个缓冲区(并且我可以将其设为字符串)。我需要迭代输出字符串的行。我该怎么做?
I get a buffer (and I can make it a string) from child_process.exec()
in NodeJS. I need to iterate over the lines of the output string. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
避免在内存中分割整个内容的一种方法是一次处理一行
One way to avoid splitting the whole thing in memory is to process it one line at a time