Class: Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule41
- Inherits:
-
Object
- Object
- Sastrawi::Morphology::Disambiguator::DisambiguatorPrefixRule41
- Defined in:
- lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule41.rb
Instance Method Summary collapse
Instance Method Details
#disambiguate(word) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/sastrawi/morphology/disambiguator/disambiguator_prefix_rule41.rb', line 5 def disambiguate(word) contains = /^ku(.*)$/.match(word) if contains matches = contains.captures return matches[0] end end |