english_words 4.0.0 copy "english_words: ^4.0.0" to clipboard
english_words: ^4.0.0 copied to clipboard

Utilities for working with English words. Counts syllables, generates well-sounding word combinations, and provides access to the top 5000 English words by usage.

english_words #

Build status

A package containing the most ~5000 used English words and some utility functions.

Usage #

Printing the top 50 most used nouns in the English language:

import 'package:english_words/english_words.dart';

main() {
  nouns.take(50).forEach(print);
}

Computing number of syllables in a word:

syllables('beautiful');  // 3
syllables('abatement');  // 3
syllables('zoology');  // 4

Generating 5 interesting 2-syllable word combinations:

generateWordPairs().take(5).forEach(print);

Features and bugs #

Please file feature requests and bugs at the issue tracker.

552
likes
160
points
32.2k
downloads

Publisher

verified publisherfiliph.net

Weekly Downloads

Utilities for working with English words. Counts syllables, generates well-sounding word combinations, and provides access to the top 5000 English words by usage.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

string_scanner

More

Packages that depend on english_words