1.0.4 • Published 6 years ago

grapheme-splitter v1.0.4

Weekly downloads
930,779
License
MIT
Repository
github
Last release
6 years ago

Background

In JavaScript there is not always a one-to-one relationship between string characters and what a user would call a separate visual "letter". Some symbols are represented by several characters. This can cause issues when splitting strings and inadvertently cutting a multi-char letter in half, or when you need the actual number of letters in a string.

For example, emoji characters like "🌷","🎁","💩","😜" and "👍" are represented by two JavaScript characters each (high surrogate and low surrogate). That is,

"🌷".length == 2

The combined emoji are even longer:

"🏳️‍🌈".length == 6

What's more, some languages often include combining marks - characters that are used to modify the letters before them. Common examples are the German letter ü and the Spanish letter ñ. Sometimes they can be represented alternatively both as a single character and as a letter + combining mark, with both forms equally valid:

var two = "ñ"; // unnormalized two-char n+◌̃  , i.e. "\u006E\u0303";
var one = "ñ"; // normalized single-char, i.e. "\u00F1"
console.log(one!=two); // prints 'true'

Unicode normalization, as performed by the popular punycode.js library or ECMAScript 6's String.normalize, can sometimes fix those differences and turn two-char sequences into single characters. But it is not enough in all cases. Some languages like Hindi make extensive use of combining marks on their letters, that have no dedicated single-codepoint Unicode sequences, due to the sheer number of possible combinations. For example, the Hindi word "अनुच्छेद" is comprised of 5 letters and 3 combining marks:

अ + न + ु + च + ् + छ + े + द

which is in fact just 5 user-perceived letters:

अ + नु + च् + छे + द

and which Unicode normalization would not combine properly. There are also the unusual letter+combining mark combinations which have no dedicated Unicode codepoint. The string Z͑ͫ̓ͪ̂ͫ̽͏̴̙̤̞͉͚̯̞̠͍A̴̵̜̰͔ͫ͗͢L̠ͨͧͩ͘G̴̻͈͍͔̹̑͗̎̅͛́Ǫ̵̹̻̝̳͂̌̌͘ obviously has 5 separate letters, but is in fact comprised of 58 JavaScript characters, most of which are combining marks.

Enter the grapheme-splitter.js library. It can be used to properly split JavaScript strings into what a human user would call separate letters (or "extended grapheme clusters" in Unicode terminology), no matter what their internal representation is. It is an implementation on the Default Grapheme Cluster Boundary of UAX #29.

Installation

You can use the index.js file directly as-is. Or you you can install grapheme-splitter to your project using the NPM command below:

$ npm install --save grapheme-splitter

Tests

To run the tests on grapheme-splitter, use the command below:

$ npm test

Usage

Just initialize and use:

var splitter = new GraphemeSplitter();

// split the string to an array of grapheme clusters (one string each)
var graphemes = splitter.splitGraphemes(string);

// iterate the string to an iterable iterator of grapheme clusters (one string each)
var graphemes = splitter.iterateGraphemes(string);

// or do this if you just need their number
var graphemeCount = splitter.countGraphemes(string);

Examples

var splitter = new GraphemeSplitter();

// plain latin alphabet - nothing spectacular
splitter.splitGraphemes("abcd"); // returns ["a", "b", "c", "d"]

// two-char emojis and six-char combined emoji
splitter.splitGraphemes("🌷🎁💩😜👍🏳️‍🌈"); // returns ["🌷","🎁","💩","😜","👍","🏳️‍🌈"]

// diacritics as combining marks, 10 JavaScript chars
splitter.splitGraphemes("Ĺo͂řȩm̅"); // returns ["Ĺ","o͂","ř","ȩ","m̅"]

// individual Korean characters (Jamo), 4 JavaScript chars
splitter.splitGraphemes("뎌쉐"); // returns ["뎌","쉐"]

// Hindi text with combining marks, 8 JavaScript chars
splitter.splitGraphemes("अनुच्छेद"); // returns ["अ","नु","च्","छे","द"]

// demonic multiple combining marks, 75 JavaScript chars
splitter.splitGraphemes("Z͑ͫ̓ͪ̂ͫ̽͏̴̙̤̞͉͚̯̞̠͍A̴̵̜̰͔ͫ͗͢L̠ͨͧͩ͘G̴̻͈͍͔̹̑͗̎̅͛́Ǫ̵̹̻̝̳͂̌̌͘!͖̬̰̙̗̿̋ͥͥ̂ͣ̐́́͜͞"); // returns ["Z͑ͫ̓ͪ̂ͫ̽͏̴̙̤̞͉͚̯̞̠͍","A̴̵̜̰͔ͫ͗͢","L̠ͨͧͩ͘","G̴̻͈͍͔̹̑͗̎̅͛́","Ǫ̵̹̻̝̳͂̌̌͘","!͖̬̰̙̗̿̋ͥͥ̂ͣ̐́́͜͞"]

TypeScript

Grapheme splitter includes TypeScript declarations.

import GraphemeSplitter = require('grapheme-splitter')

const splitter = new GraphemeSplitter()

const split: string[] = splitter.splitGraphemes('Z͑ͫ̓ͪ̂ͫ̽͏̴̙̤̞͉͚̯̞̠͍A̴̵̜̰͔ͫ͗͢L̠ͨͧͩ͘G̴̻͈͍͔̹̑͗̎̅͛́Ǫ̵̹̻̝̳͂̌̌͘!͖̬̰̙̗̿̋ͥͥ̂ͣ̐́́͜͞')

Acknowledgements

This library is heavily influenced by Devon Govett's excellent grapheme-breaker CoffeeScript library at https://github.com/devongovett/grapheme-breaker with an emphasis on ease of integration and pure JavaScript implementation.

@borderfreefinancial/revo-consumer@borderfreefinancial/revo-core@borderfreefinancial/revo-core-api@borderfreefinancial/revo-web-video-test@borderfreefinancial/test-chat-sdk@borderfreefinancial/local-chat-sdk@borderfreefinancial/prod-chat-sdk@borderfreefinancial/qa-chat-sdk@borderfreefinancial/dev-chat-sdkpq-fmt-corewith-emoji-masking@oiti/documentoscopy-react-nativequoc-test@infinitebrahmanuniverse/nolb-graphejitsi-meet-react-native-rocketsklif-ui-kitsklif-apits-handy@everything-registry/sub-chunk-1783meitq-mtsklif-uizzzxxxyyy321123palette-mobilepassbolt-styleguidereact-native-additionreact-native-arps-authorize-netreact-native-auth-service-clientreact-native-animate-textreact-native-awesome-android-123react-native-awesome-android-123-zeotapreact-native-awesome-module-tworeact-native-ghn-ekycreact-native-get-countriesreact-native-radish-meeting-imkitreact-native-radio-bic-group-libreact-native-reanimated-sortable-listreact-native-android-video-player-viewreact-native-bridge-packagereact-native-check-componentreact-native-chenaarreact-native-aventonfacetec-aventonreact-native-azure-communication-servicesreact-native-native-ios-test1react-native-module-for-testingreact-native-nghia-shareringreact-native-nice-learningreact-native-multiplier-componentreact-native-multiplier-demoreact-native-multiplier2react-native-multiply-componentreact-native-return-usb-datareact-native-sdk-stepupreact-native-sdk-v2react-native-savczuk-feature-libraryreact-native-screen-idle-timerreact-native-simple-timelinereact-native-sp-test-commonreact-native-rn-icons-libraryreact-native-scroll-tab-to-indexreact-native-shared-gesturereact-native-ticker-tapereact-native-version-appreact-native-uvc-camera-androidreact-native-wtfreat-native-multiplierkprprod-bfi-chat-sdkqaapio-reecord-mp3react-native-ui-components-libraryreact-native-test-viewreact-microphone-recorder1react-native-bluetooth-device-detectreact-native-bleccs-componentsreact-native-app-integrity-checksumreact-native-dhp-printerreact-native-library-testing-422522react-native-line-login-androidreact-native-manual-ios-sdkreact-native-input-libraryreact-native-innity-2react-native-innity-remasterreact-native-klarify-iosreact-native-klarify-uireact-native-klcstinky-2dsvelte-searchable-selectstring-convert-indexesstring-unifiedsweetalert2-denazificationsvgtilersynchronizer-v2react-ang-notifications-honey-comb-setupreact-flow-highly-customizable-edgesrouter-loggerremark-grid-tablesrn_unique_device_idspacesiumsmartwrapsms-parsesms-segments-calculatorsmart_one_connect
1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago