class Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule23
Public Instance Methods
disambiguate(word)
click to toggle source
# File lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule23.rb, line 5 def disambiguate(word) contains = /^per([bcdfghjklmnpqrstvwxyz])([a-z])(.*)$/.match(word) if contains matches = contains.captures return if /^er(.*)$/.match(matches[2]) return "#{matches[0]}#{matches[1]}#{matches[2]}" end end