Class: Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule24
- Inherits:
-
Object
- Object
- Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule24
- Defined in:
- lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule24.rb
Instance Method Summary collapse
Instance Method Details
#disambiguate(word) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule24.rb', line 5 def disambiguate(word) contains = /^per([bcdfghjklmnpqrstvwxyz])([a-z])er([aiueo])(.*)$/.match(word) if contains matches = contains.captures return if matches[0] == 'r' return "#{matches[0]}#{matches[1]}er#{matches[2]}#{matches[3]}" end end |