| |
| |
| |
| |
| """ |
| Check if a word is a "native Thai word" |
| |
| Adapted from |
| https://github.com/wannaphong/open-thai-nlp-document/blob/master/check_thai_word.md |
| |
| References |
| - ทีมงานทรูปลูกปัญญา 2015. ลักษณะของคำไทยแท้ \ |
| http://www.trueplookpanya.com/learning/detail/30589-043067 |
| - วารุณี บำรุงรส 2010. คำไทยแท้ https://www.gotoknow.org/posts/377619 |
| """ |
| import re |
|
|
| _THANTHAKHAT_CHAR = "\u0e4c" |
|
|
| |
| _TH_NON_NATIVE_CHARS = { |
| "ฆ", |
| "ณ", |
| "ฌ", |
| "ฎ", |
| "ฏ", |
| "ฐ", |
| "ฑ", |
| "ฒ", |
| "ธ", |
| "ศ", |
| "ษ", |
| "ฬ", |
| _THANTHAKHAT_CHAR, |
| } |
|
|
| |
| _TH_NATIVE_FINALS = {"ก", "ด", "บ", "น", "ง", "ม", "ย", "ว"} |
|
|
| |
| _TH_NATIVE_WORDS = { |
| "ฆ่า", |
| "เฆี่ยน", |
| "ศึก", |
| "ศอก", |
| "เศิก", |
| "เศร้า", |
| "ธ", |
| "ณ", |
| "ฯพณฯ", |
| "ใหญ่", |
| "หญ้า", |
| "ควาย", |
| "ความ", |
| "กริ่งเกรง", |
| "ผลิ", |
| } |
|
|
| |
| _TH_PREFIX_DIPHTHONG = {"กะ", "กระ", "ปะ", "ประ"} |
|
|
| |
| |
| _TH_CONSONANTS_PATTERN = re.compile(r"[ก-ฬฮ]", re.U) |
|
|
|
|
| def is_native_thai(word: str) -> bool: |
| """ |
| Check if a word is an "native Thai word" (Thai: "คำไทยแท้") |
| This function is based on a simple heuristic algorithm |
| and cannot be entirely reliable. |
| |
| :param str word: word |
| :return: True or False |
| :rtype: bool |
| |
| :Example: |
| |
| English word:: |
| |
| from pythainlp.util import is_native_thai |
| |
| is_native_thai("Avocado") |
| # output: False |
| |
| Native Thai word:: |
| |
| is_native_thai("มะม่วง") |
| # output: True |
| is_native_thai("ตะวัน") |
| # output: True |
| |
| Non-native Thai word:: |
| |
| is_native_thai("สามารถ") |
| # output: False |
| is_native_thai("อิสริยาภรณ์") |
| # output: False |
| """ |
| if not isinstance(word, str) or not word.strip(): |
| return False |
|
|
| word = word.strip() |
|
|
| |
| if word in _TH_NATIVE_WORDS: |
| return True |
|
|
| |
| if any(ch in word for ch in _TH_NON_NATIVE_CHARS): |
| return False |
|
|
| |
| chs = re.findall(_TH_CONSONANTS_PATTERN, word) |
| if not chs: |
| return False |
|
|
| |
| if len(chs) == 1: |
| return True |
|
|
| |
| if word[-1] in _TH_NATIVE_FINALS: |
| return True |
|
|
| |
| |
| if word in _TH_PREFIX_DIPHTHONG: |
| return True |
|
|
| return False |
|
|