Thai language utility for Ruby
I have built this project in order to collect and share tools for Thai language, which are written in Ruby language.
gem install thailang4r
- chlevel is similar th_chlevel in libthai.
- string_chlevel gives array of level back for example string_chlevel("กี") will return [1, 2]
# encoding: UTF-8
require 'thailang4r/word_breaker'
word_breaker = ThaiLang::WordBreaker.new
puts word_breaker.break_into_words('กกตศรรมขจ')
# => ['กกต', 'ศรรม', 'ขจ']