Class: NHKore::Splitter
- Inherits:
-
Object
- Object
- NHKore::Splitter
- Defined in:
- lib/nhkore/splitter.rb
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#begin_split(str) ⇒ Object
15 16 17 |
# File 'lib/nhkore/splitter.rb', line 15 def begin_split(str) return str end |
#split(str) ⇒ Object
19 20 21 22 23 24 |
# File 'lib/nhkore/splitter.rb', line 19 def split(str) str = begin_split(str) str = end_split(str) return str end |