[Javascript Natural] Break up language strings to parts using Natural

Source: Internet
Author: User
Tags processing text

A part of Natural Language processing (NLP) was processing text by "tokenizing" Language strings. This means we can break up a string of text to parts by word, sentence, etc. In this lesson, we'll use the natural library to tokenize a string. First, we'll break the string into words using WordTokenizer , WordPunctTokenizer and TreebankWordTokenizer . Then we'll break the string into sentences using RegexpTokenizer .

var natural = require ('natural'),  new  Natural. Wordtokenizer (); Console.log (tokenizer.tokenize("your dog has fleas. " )); //

Tokenizer =NewNatural. Treebankwordtokenizer (); Console.log (Tokenizer.tokenize ("my dog hasn ' t any fleas."));//[' My ', ' dog ', ' have ', ' n\ ' t ', ' any ', ' fleas ', '. ']Tokenizer=NewNatural. Regexptokenizer ({pattern:/\-/}); Console.log (Tokenizer.tokenize ("Flea-dog"));//[' Flea ', ' dog ']Tokenizer=NewNatural. Wordpuncttokenizer (); Console.log (Tokenizer.tokenize ("my dog hasn ' t any fleas."));//[' My ', ' dog ', ' hasn ', ' \ ', ' t ', ' any ', ' fleas ', '. ']

[Javascript Natural] Break up language strings to parts using Natural

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.