Method: StringExtensions#to_str_arr
- Defined in:
- lib/extensions/string_extensions.rb
#to_str_arr(del = ',') ⇒ Object
18 19 20 |
# File 'lib/extensions/string_extensions.rb', line 18 def to_str_arr(del=',') self.split(del).collect{|x| x.to_s} end |