string-searching
v0.1.4
Published
Fast string searching algorithms.
Downloads
53
Maintainers
Readme
string-searching
Features:
Fast string searching algorithms, including:
Installation:
$ npm install --save string-searching
Syntax
.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);