1.0.0 • Published 9 years ago

count-von-count v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

Count Von Count

npm.io

A simple tool to filter a string for spelled numbers (one hundred), digits (1 hundred), or mixed numbers (1 hundred) and convert it all to digits (100).

Installation

npm install count-von-count --save

Usage

var countVonCount = require('count-von-count');

var stringToBeFiltered = "3 hundred 26 thousand five hundred and thirty-6";

countVonCount(stringToBeFiltered); //returns 326536

Tests

npm test

Limitations

  • Handles cases up to nine hundred and ninety nine decillion.
  • Does not handle cases where spelled numbers or digits are not separated from other words, spelled numbers, or digits by whitespace.

Release History

  • 0.1.0 initial release.