class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule9

Public Instance Methods

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

  if contains
    matches = contains.captures

    return if matches[0] == 'r'

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