soundex

soundex algorithm

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:24

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

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.