hyphenator 0.1.0

Simple library for segmenting words into syllables
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 13.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • d3z-the-dev/hyphenator
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • d3z-the-dev

hyphenator

hyphenator is a simple Rust library for segmenting words into syllables, using a simple vowel-consonant combination approach to split words into syllables.

Usage

To use the hyphenator, add this to your Cargo.toml:

[dependencies]
hyphenator = "0.1.0"

Example

use hyphenator::split;

fn main() {
    let word = "Hyphenator";
    let results = split(word);
    
    println!("{:?}", results[0]);
}