https://github.com/pseitz/chinese_top_1000_words
https://github.com/pseitz/chinese_top_1000_words
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pseitz/chinese_top_1000_words
- Owner: PSeitz
- Created: 2023-10-18T17:12:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-24T12:38:05.000Z (over 2 years ago)
- Last Synced: 2025-01-25T06:25:36.926Z (over 1 year ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Top 1000 Chinese Words in Traditional Chinese that are used in Taiwan.
Thanks to K. J. Chen and the CKIP Group of the Academia Sinica for the list.
Extracted from https://en.wiktionary.org/wiki/Appendix:Mandarin_Frequency_lists/1-1000
```javascript
var terms = [];
$('.Hant').each(function(){
terms.push($(this).text());
});
var lineSeparatedString = terms.join('\n');
console.log(lineSeparatedString);
```