split-alpha-nums
v1.0.3
Published
It will return the text and numbers separately
Downloads
2
Readme
split letters and numbers from a given string
The splitLettersAndNumbers method can return numbers and text to an array.
const splitLettersAndNumbers = require('split-alpha-nums');
console.log(splitLettersAndNumbers("aadf123")); ==> ["123", "aadf"]