buffer-split
split a buffer by another buffer. think String.split()
Last updated 10 years ago by soldair .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install buffer-split 
SYNC missed versions from official npm registry.

Build Status

buffer-split

split a buffer by another buffer. think String.split()


var bsplit = require('buffer-split')
, b = new Buffer("this is a buffer i like to split")
, delim = new Buffer('buffer')
, result = bsplit(b,delim)
;

result.length === 2

result[0].toString() === "this is a "

result[1].toString() === " i like to split"


you may include the delimiter in the result by passing a thrthy value as the third arg. its more efficient if you need it.

var bsplit = require('buffer-split')
, b = new Buffer("this is a buffer i like to split")
, delim = new Buffer('buffer')
, result = bsplit(b,delim,true)
;

result[0].toString() === "this is a buffer"

result[1].toString() === " i like to split"


Current Tags

  • 1.0.0                                ...           latest (10 years ago)

2 Versions

  • 1.0.0                                ...           10 years ago
  • 0.0.0                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (1)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |