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
17 18 19 |
# File 'lib/nhkore/splitter.rb', line 17 def begin_split(str) return str end |
#split(str) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/nhkore/splitter.rb', line 21 def split(str) str = begin_split(str) str = end_split(str) return str end |