number-finder

1.1.1 • Public • Published

Number Finder

Licence npm Version

A Node.js package that check and extract all the available numbers in from the given string. And return all the possible different combinations and format for the numbers containing in input string. A basis number finder npm package.

Demo and Docs

Installation

The package can be installed via NPM:

npm install number-finder --save
 
yarn add number-finder

number-finder can be imported as follows

var numberfinder = require('number-finder');
 
OR
 
import numberfinder from 'number-finder';
 

Example

 
   import numberfinder from 'number-finder';
 
   console.log(numberfinder("this3545is4235number-finder43789example")); 
   
   
   Result:-
 
   numberTypeArray: [3545, 4235, 43789]
 
   numberTypeNumberArray: [3, 5, 4, 5, 4, 2, 3, 5, 4, 3, 7, 8, 9]
 
   numberTypeNumberSet: 3545423543789
 
   stringTypeArray: ["3545", "4235", "43789"]
 
   stringTypeNumberArray: ["3", "5", "4", "5", "4", "2", "3", "5", "4", "3", "7", "8", "9"]
 
   stringTypeNumberSet: "3545423543789"

License

MIT

Package Sidebar

Install

npm i number-finder

Weekly Downloads

3

Version

1.1.1

License

MIT

Unpacked Size

3.63 kB

Total Files

4

Last publish

Collaborators

  • gaurav_tanwar