class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule26a

Public Instance Methods

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

  if contains
    matches = contains.captures

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