声音编码
语音算法。
Soundex是较早的语音算法之一,专门为姓氏设计,启发了其他诸如 。
根据您的目标,另外使用一个茎杆(例如 )。
安装
:
npm install soundex-code
API
var soundex = require ( 'soundex-code' )
soundex ( 'phonetics' ) // => 'P532'
soundex ( 'Ashcraft' ) // => 'A261'
soundex ( 'Lissajous' ) // => 'L222'
soundex ( 'Smith' ) === soundex ( 'Schmit' ) // => true
soundex ( 'Ashcraftersson' , 6 ) // => 'A26136'
soundex ( 'A' , 6 ) // => 'A000'
命令行界面
Usage: soundex-code [options]
Soundex phonetic algorithm.
Options:
-h, --help
1