0.1.4 • Published 10 years ago
string-searching v0.1.4
string-searching 
Features:
Fast string searching algorithms, including:
Installation:
$ npm install --save string-searchingSyntax
.boyer_moore(text, pattern[, recursive])Example:
const ss = require("string-searching");
const text = "HERE IS A SIMPLE EXAMPLE";
const pattern = "EXAMPLE";
// search first index of pattern (like the String.prototype.indexOf() do).
const index = ss.boyer_moore(text, pattern);
// or passing true to search all patterns.
const indexes = ss.boyer_moore(text, pattern, true);