string-match-left-right
Match substrings on the left or right of a given index, ignoring whitespace
Install
This package is pure ESM. If you're not ready yet, install an older version of this program, 7.1.0 (npm i string-match-left-right@7.1.0
).
npm i string-match-left-right
Quick Take
import { strict as assert } from "assert";
import {
matchLeftIncl,
matchRightIncl,
matchLeft,
matchRight,
} from "string-match-left-right";
assert.equal(matchLeftIncl("abcdefghi", 3, ["bcd"]), "bcd");
assert.equal(matchLeft("abcdefghi", 3, ["ab", "zz"]), false);
assert.equal(matchRightIncl("abcdefghi", 3, ["def", "zzz"]), "def");
assert.equal(matchRight("abcdefghi", 3, ["ef", "zz"]), "ef");
Documentation
Please visit codsen.com for a full description of the API.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License.
Copyright © 2010-2023 Roy Revelt and other contributors.