Method: Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule37a#disambiguate
- Defined in:
- lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule37a.rb
#disambiguate(word) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule37a.rb', line 5 def disambiguate(word) contains = /^([bcdfghjklmnpqrstvwxyz])(er[aiueo])(.*)$/.match(word) if contains matches = contains.captures return "#{matches[0]}#{matches[1]}#{matches[2]}" end end |