An open API service indexing awesome lists of open source software.

https://github.com/gitbookio/tokenize-english

Javascript tokenizer for english sentences
https://github.com/gitbookio/tokenize-english

Last synced: 9 months ago
JSON representation

Javascript tokenizer for english sentences

Awesome Lists containing this project

README

          

# tokenize-english

[![Build Status](https://travis-ci.org/GitbookIO/tokenize-english.png?branch=master)](https://travis-ci.org/GitbookIO/tokenize-english)
[![NPM version](https://badge.fury.io/js/tokenize-english.svg)](http://badge.fury.io/js/tokenize-english)

Javascript tokenizer for english sentences.

### Installation

```
$ npm install tokenize-english
```

### Usage

```js
var tokenize = require('tokenize-text')();
var tokenizeEnglish = require('tokenize-english')(tokenize);

var tokens = tokenizeEnglish.sentences("On Jan. 20, former Sen. Barack Obama became the 44th President of the U.S. Millions attended the Inauguration.")

/*
[ { index: 0,
value: 'On Jan. 20, former Sen. Barack Obama became the 44th President of the U.S.',
offset: 74 },
{ index: 74,
value: ' Millions attended the Inauguration.',
offset: 36 } ]
*/
```