No description
Find a file
2020-06-29 07:15:36 +09:00
src Delete wasting submodule file 2020-06-27 14:25:05 +09:00
tests Delete wasting test file 2020-06-27 14:45:28 +09:00
.travis.yml Add .travis file 2020-06-27 15:14:06 +09:00
README.md Update README.md 2020-06-29 07:15:36 +09:00
soundex.nimble Create initali nimble project 2020-06-27 09:09:39 +09:00

soundex

Build Status

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.