class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule15b
Public Instance Methods
disambiguate(word)
click to toggle source
# File lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule15b.rb, line 5 def disambiguate(word) contains = /^men([aiueo])(.*)$/.match(word) if contains matches = contains.captures return "t#{matches[0]}#{matches[1]}" end end