soundex
soundex algorithm
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install soundex
choosenim install soundex
git clone https://github.com/Kashiwara0205/soundex
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| soundex | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/Kashiwara0205/soundex |
|---|---|
| Homepage | https://github.com/Kashiwara0205/soundex |
| Registry Source | nimble_official |
README
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.