mirror of
https://github.com/Kashiwara0205/soundex
synced 2026-01-13 18:21:47 +00:00
No description
| src | ||
| tests | ||
| .travis.yml | ||
| README.md | ||
| soundex.nimble | ||
soundex
soundex algorithm nim library
Usage
You can get soundex code.
import soundex
var sdx = soundex.newSoundex("xxxxx")
check "xxxxx" == sdx.getInput
check "X200" == sdx.getCode
sdx = soundex.newSoundex("Rupert")
check "Rupert" == sdx.getInput
check "R163" == sdx.getCode
sdx = soundex.newSoundex("Robert")
check "Robert" == sdx.getInput
check "R163" == sdx.getCode
License
The library is available as open source under the terms of the MIT License.