v4.0.0
english_words
영어 단어를 다루는 데 사용할 수 있는 도구입니다. 음절을 세고, 잘 들리는 단어 조합을 생성하며, 사용 빈도가 높은 상위 5,000개의 영어 단어에 접근할 수 있습니다.
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.