admin管理员组文章数量:1346338
How does one search for a string in a stream and then print it? By this I mean with the use of createReadStream
. I figured out how to find strings in readFile
with the use of indexOf
, but I am reading that using streams are more efficient.
More specifically, I've been trying to find a string within a stream, and then print out the whole line that contains the string. However the following keeps giving me errors
fs.createReadStream(process.argv[2], function (err, data) {
data.indexOf ...
Currently, my program prints out the entire stream rather than just the lines containing the strings.
var http = require('http');
var fs = require('fs');
var server = http.createServer( function(req, res) {
console.log("Request received.");
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("Hello World\n\n\n");
var s = fs.createReadStream(process.argv[2]).pipe(res);
s.on('end', function(){ res.end() })
});
server.listen(8000);
How does one search for a string in a stream and then print it? By this I mean with the use of createReadStream
. I figured out how to find strings in readFile
with the use of indexOf
, but I am reading that using streams are more efficient.
More specifically, I've been trying to find a string within a stream, and then print out the whole line that contains the string. However the following keeps giving me errors
fs.createReadStream(process.argv[2], function (err, data) {
data.indexOf ...
Currently, my program prints out the entire stream rather than just the lines containing the strings.
var http = require('http');
var fs = require('fs');
var server = http.createServer( function(req, res) {
console.log("Request received.");
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("Hello World\n\n\n");
var s = fs.createReadStream(process.argv[2]).pipe(res);
s.on('end', function(){ res.end() })
});
server.listen(8000);
Share
Improve this question
edited Nov 25, 2013 at 7:54
Damodaran
11.1k10 gold badges62 silver badges83 bronze badges
asked Nov 25, 2013 at 7:46
krikarakrikara
2,44510 gold badges39 silver badges75 bronze badges
2 Answers
Reset to default 6Streams are buffered, so the buffers passed to the data
event (which you would normally listen to) aren't in any way split into, or delimited on, separate lines.
You can use the readline
module to perform line-by-line searching:
var fs = require('fs');
var readline = require('readline');
var server = http.createServer( function(req, res) {
console.log("Request received.");
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("Hello World\n\n\n");
readline.createInterface({
input : fs.createReadStream(process.argv[2]),
terminal : false
}).on('line', function(line) {
var idx = line.indexOf(THE_SUBSTRING);
if (idx !== -1) {
res.write(line + '\n');
}
}).on('close', function() {
res.end();
});
});
(EDIT: readline strips newlines, so res.write
adds one back)
You can use this module to search string in a stream without buffering
本文标签: javascriptHow to search stream for string in nodejsStack Overflow
版权声明:本文标题:javascript - How to search stream for string in node.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825926a2545637.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论