Skip to content

nonoroazoro/string-searching

Repository files navigation

string-searching NPM Verison Build Status

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);

About

Fast string searching algorithms.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages