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