@stdlib/string-next-grapheme-cluster-break-cli
v0.2.2
Published
Return the next extended grapheme cluster break in a string after a specified position.
Downloads
5
Readme
nextGraphemeClusterBreak
Return the next extended grapheme cluster break in a string after a specified position.
Installation
To use as a general utility, install the CLI package globally
npm install -g @stdlib/string-next-grapheme-cluster-break-cli
Usage
Usage: next-grapheme-cluster-break [options] [<string>]
Options:
-h, --help Print this message.
-V, --version Print the package version.
--from index Starting search position in string. Default: 0.
Examples
$ next-grapheme-cluster-break --from=1 अनुच्छेद
3
To use as a standard stream,
$ echo -n 'अनुच्छेद' | next-grapheme-cluster-break --from=1
3
See Also
@stdlib/string-next-grapheme-cluster-break
: return the next extended grapheme cluster break in a string after a specified position.@stdlib/string-num-grapheme-clusters
: return the number of grapheme clusters in a string.@stdlib/string-prev-grapheme-cluster-break
: return the previous extended grapheme cluster break in a string before a specified position.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.