class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule19

Public Instance Methods

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

  if contains
    matches = contains.captures

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