class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule39b

Public Instance Methods

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

  if contains
    matches = contains.captures

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