在 NodeJS 中迭代字符串行

发布于 2024-12-06 10:25:46 字数 95 浏览 0 评论 0原文

我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听风吹 2024-12-13 10:25:46

避免在内存中分割整个内容的一种方法是一次处理一行

var i = 0;
while (i < output.length)
{
    var j = output.indexOf("\\n", i);
    if (j == -1) j = output.length;
    .... process output.substr(i, j-i) ....
    i = j+1;
}

One way to avoid splitting the whole thing in memory is to process it one line at a time

var i = 0;
while (i < output.length)
{
    var j = output.indexOf("\\n", i);
    if (j == -1) j = output.length;
    .... process output.substr(i, j-i) ....
    i = j+1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文