fullname-extractor
v1.1.4
Published
A utility to extract first-name, middle-name, last-name, honorifics and gender based on the input string provided.
Downloads
12
Maintainers
Readme
fullname-extractor
A utility to extract first-name, middle-name, last-name, honorifics and gender based on the input string provided.
Note
I integrated dictionary in the new version.
Usage
var fullnameExtractor = require('fullname-extractor')
var data = fullnameExtractor("my name is cool mr 4sameer @darsh rohan jijaram solse")
console.log(data)
//output
{ status: 'success',
honorific: 'Mr.',
gender: 'Male',
firstName: 'Rohan',
middleName: 'Jijaram',
lastName: 'Solse',
name: 'Rohan Jijaram Solse' }
Contributing
Rohan Solse
All suggestions and recommendations are more than welcome. You can get in contact with me @ [email protected].