v4.0.0
english_words
英語の単語を扱うためのユーティリティ。音節数をカウントし、聞き心地の良い単語の組み合わせを生成し、使用頻度上位5000語にアクセスできます。
570いいね 2.7万30日間ダウンロード160Pub ポイント
AndroidiOSWebmacOSWindowsLinux
英語の単語を扱うためのユーティリティ
^1.1.0^1.16.8以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
A package containing the most ~5000 used English words and some utility functions.
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);
Please file feature requests and bugs at the issue tracker.