Syllable counter

Implementation of a simple syllable counter for english

Лицензия

Лицензия

Группа

Группа

eu.crydee
Идентификатор

Идентификатор

syllable-counter
Последняя версия

Последняя версия

4.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Syllable counter
Implementation of a simple syllable counter for english
Ссылка на сайт

Ссылка на сайт

https://github.com/m09/syllable-counter
Система контроля версий

Система контроля версий

https://github.com/m09/syllable-counter

Скачать syllable-counter

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/eu.crydee/syllable-counter/ -->
<dependency>
    <groupId>eu.crydee</groupId>
    <artifactId>syllable-counter</artifactId>
    <version>4.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/eu.crydee/syllable-counter/
implementation 'eu.crydee:syllable-counter:4.1.0'
// https://jarcasting.com/artifacts/eu.crydee/syllable-counter/
implementation ("eu.crydee:syllable-counter:4.1.0")
'eu.crydee:syllable-counter:jar:4.1.0'
<dependency org="eu.crydee" name="syllable-counter" rev="4.1.0">
  <artifact name="syllable-counter" type="jar" />
</dependency>
@Grapes(
@Grab(group='eu.crydee', module='syllable-counter', version='4.1.0')
)
libraryDependencies += "eu.crydee" % "syllable-counter" % "4.1.0"
[eu.crydee/syllable-counter "4.1.0"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.13

Модули Проекта

Данный проект не имеет модулей.

Syllable Counter

CI Status Deploy Status Maven Central version codecov

Uses a fallback method—based on the NLTK readability plugin by Thomas Jakobsen thomj05@student.uia.no and Thomas Skardal thomas04@student.uia.no. This NLTK plugin is itself based on the algorithm implemented in the Lingua::EN::Syllable perl module by Greg Fast gdf@imsa.edu.

Thanks to them for making their work available.

Requirements

To use this Java library, you need Java 8 and Maven 3.

Installation

Refer to the Maven Central page to find the installation instructions for your build tool or to download the jar directly.

Usage

The usage is trivial. To retrieve the number of syllables of a word, use the count method:

import eu.crydee.syllablecounter.SyllableCounter;

...

SyllableCounter sc = new SyllableCounter();
int myCount = sc.count("facility");
// myCount holds 4

Версии библиотеки

Версия
4.1.0
4.0.3
4.0.2
4.0.1
4.0.0
3.0.1
3.0.0
2.0.0
1.0.0