Class: Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule17d

Inherits:
Object
  • Object
show all
Defined in:
lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule17d.rb

Instance Method Summary collapse

Instance Method Details

#disambiguate(word) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule17d.rb', line 5

def disambiguate(word)
  contains = /^meng([aiueo])(.*)$/.match(word)

  if contains
    matches = contains.captures

    return 'ng' << matches[0] << matches[1]
  end
end