class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule8
Public Instance Methods
disambiguate(word)
click to toggle source
# File lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule8.rb, line 5 def disambiguate(word) contains = /^ter([bcdfghjklmnpqrstvwxyz])(.*)$/.match(word) if contains matches = contains.captures return if matches[0] == 'r' || /^er(.*)$/.match(matches[1]) return "#{matches[0]}#{matches[1]}" end end