class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule7

Public Instance Methods

disambiguate(word) click to toggle source
# File lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule7.rb, line 5
def disambiguate(word)
  contains = /^ter([bcdfghjklmnpqrstvwxyz])er([aiueo].*)$/.match(word)

  if contains
    matches = contains.captures

    return if matches[0] == 'r'

    return "#{matches[0]}er#{matches[1]}"
  end
end