str-indexes-of-plus
TypeScript icon, indicating that this package has built-in type declarations

5.0.7 • Public • Published

str-indexes-of-plus

Like indexOf but returns array and counts per-grapheme

page on codsen.com page on npm page on github Downloads per month changelog MIT Licence

Install

This package is pure ESM. If you're not ready yet, install an older version of this program, 3.1.0 (npm i str-indexes-of-plus@3.1.0).

npm i str-indexes-of-plus

Quick Take

import { strict as assert } from "assert";

import { strIndexesOfPlus } from "str-indexes-of-plus";

// searches for string in a string, returns array:
assert.deepEqual(strIndexesOfPlus("abc-abc-abc-abc", "abc"), [0, 4, 8, 12]);

// all graphemes are counted as one, emoji too:
assert.deepEqual(
  strIndexesOfPlus("🐴-🦄", "🦄"),
  [2], // not [3] considering unicorn is 2-characters long
);

// you can offset the start of a search:
assert.deepEqual(strIndexesOfPlus("abczabc", "abc", 3), [4]);

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-2024 Roy Revelt and other contributors.

ok codsen star

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 5.0.7
    15
    • latest

Version History

Package Sidebar

Install

npm i str-indexes-of-plus

Weekly Downloads

15

Version

5.0.7

License

MIT

Unpacked Size

12 kB

Total Files

7

Last publish

Collaborators

  • royston