Feature #10240
closed`String#to_a`
Description
I often want to exclude the empty strings from an array of strings. A use case is to join an array of strings with ", ", removing the empty ones, as follows:
In a similar situation with arrays of arrays, the empty ones can be excluded by using * and Array#to_a:
I would like to propose String#to_a defined as follows:
Then we can do:
Updated by matz (Yukihiro Matsumoto) almost 12 years ago
I understand your intention, but I think proposed behavior is bit awkward for to_a of String class.
As you know to_a stands for conversion to array, I don't think "" -> [] is natural conversion from strings.
Matz.
Updated by sawa (Tsuyoshi Sawada) almost 12 years ago
Matz is right. I was wrong about the idea. In the cases I showed, I should have had nil values instead of empty strings. I will withdraw this proposal.
Updated by sawa (Tsuyoshi Sawada) over 6 years ago
- Subject changed from String#to_a to `String#to_a`
- Description updated (diff)
Updated by sawa (Tsuyoshi Sawada) over 6 years ago
I do not feel this proposal to be natural any more. Please close this issue.
Updated by Eregon (Benoit Daloze) over 6 years ago
- Status changed from Open to Rejected