So how can I still be able to write beautiful code such as:
'im a string meing!'.pop
Note: str.chop isn't sufficient answer
|
So how can I still be able to write beautiful code such as:
Note:
| |||||||||||
feedback
|
|
It is not what an enumerable string atually enumerates. Is a string a sequence of ...
The answer is: all of those, any of those, either of those or neither of those, depending on the context. Therefore, you have to tell Ruby which of those you actually want. There are several methods in the
This looks kind of ugly, but there is a reason for it: a string is a sequence. You are treating it as a stack. A stack is not a sequence, in fact it pretty much is the opposite of a sequence. | |||||||
feedback
|
|
That's not beautiful :) Also #pop is not part of Enumerable, it's part of Array. The reason why String is not enumerable is because there are no 'natural' units to enumerate, should it be on a character basis or a line basis? Because of this String does not have an #each String instead provides the #each_char and #each_byte and #each_line methods for iteration in the way that you choose. | |||||||||
feedback
|
|
Since you don't like str[str.length], how about
or
or, if you need it modified in place as well, while keeping it an easy one-liner:
| |||||||
feedback
|
String.rpartition is new for 1.9 but it's been back-ported to 1.8.7. It searches a string for a regular expression, starting at the end and working backwards. It returns the part of the string before the match, the match, and the part of the string after the match (which we discard here). | ||||
|
feedback
|