Project

General

Profile

Feature #15562

Updated by sawa (Tsuyoshi Sawada) about 5 years ago

`String#split` returns an empty substring if any at the beginning of the original string, even though it does not return an empty substring at the end of the original string: 

 ```ruby 
 "aba".split("a") # => ["", "b"] 
 ``` 

 This is probably heritage from Perl or AWK, and may have some use cases, but in some (if not most) use cases, this looks asymmetric, and the initial empty string is unnatural and often requires some additional code to remove it. unnatural. I propose to give an option to `String#split` to suppress it, perhaps like this (with `true` being the default): 

 ```ruby 
 "aba".split("a", initial_empty_string: false) # => ["b"] 
 "aba".split("a", initial_empty_string: true) # => ["", "b"] 
 "aba".split("ba", initial_empty_string: true) # => ["b"] 
 ``` 

 This does not mean to suppress empty strings in the middle. So it should work like this: 

 ```ruby 
 "aaaba".split("a", initial_empty_string: false) # => ["", "", "b"] 
 "aaaba".split("a", initial_empty_string: true) # => ["", "", "", "b"] 
 ``` 

 Or may be we can even go on further to control both the initial and the final ones like (with `:initial` being the default): 

 ```ruby 
 "aba".split("a", terminal_empty_string: :none) # => ["b"] 
 "aba".split("a", terminal_empty_string: :initial) # => ["", "b"] 
 "aba".split("a", terminal_empty_string: :final) # => ["b", ""] 
 "aba".split("a", terminal_empty_string: :both) # => ["", "b", ""] 
 ``` 

Back