soundex
soundex algorithm
Summary
| Latest Version | 0.1.0 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-09-01 07:18 |
Tags
Authors
- KASHIWARA FUKI
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 | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 1.0.6 | No |
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.