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

link|improve this question

because it from 'test' it returns 'tes'. unlike how .pop returns 't' – Zombies Feb 15 '10 at 14:35
2  
Doesn't work in 1.8.7 either -- not that I have any idea what it is supposed to do. Which by itself is sort of a warning sign, I think: when Ruby code isn't immediately obvious, it's probably not optimal. – Shadowfirebird Feb 15 '10 at 15:28
Note that in 1.8 string were enumerable by line. So even if string.pop had ever worked (which is not the case because Enumerable doesn't have pop or any other mutating method), it would have removed the last line, not word as you seem to expect. – sepp2k Feb 15 '10 at 16:05
If I ever needed an example of why giving programmers the power to shoot themselves in the foot is bad, I got it. Thanks! – Bill K Feb 15 '10 at 18:26
feedback

4 Answers

up vote 5 down vote accepted

It is not what an enumerable string atually enumerates. Is a string a sequence of ...

  • lines,
  • characters,
  • codepoints or
  • bytes?

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 String class which return enumerators for any of the above. If you want the pre-1.9 behavior, your code sample would be

'im a string meing!'.bytes.to_a.pop

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.

link|improve this answer
Nice answer, but the string still has all of its original characters in memory. – Zombies Feb 15 '10 at 14:49
1  
well, you could always def String.pop; self.bytes.to_a.pop; end I suppose. – Shadowfirebird Feb 15 '10 at 15:31
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.

link|improve this answer
I know, I'm learning. But it's a lot better than str[str.lenght] – Zombies Feb 15 '10 at 14:32
1  
Use str[-1] to get the last character. – banister Feb 15 '10 at 14:38
I know but I'm kind of anal retentive about this atm. Well actually that isn't too bad. – Zombies Feb 15 '10 at 14:39
feedback

Since you don't like str[str.length], how about

'im a string meing!'[-1]  # returns last character as a character value

or

'im a string meing!'[-1,1]  # returns last character as a string

or, if you need it modified in place as well, while keeping it an easy one-liner:

class String
  def pop
    last = self[-1,1]
    self.chop!
    last
  end
end
link|improve this answer
pop removes the element as well. Not sure if that's one of his requirements. – Beanish Feb 15 '10 at 14:42
True, it does remove the last element and that does make things more complex. These are still good alternatives to learn from for me though. – Zombies Feb 15 '10 at 14:46
updated to remove the last character as well (in the String::pop definition) – Matt Feb 15 '10 at 15:06
feedback
#!/usr/bin/ruby1.8

s = "I'm a string meing!"
s, last_char = s.rpartition(/./)
p [s, last_char]    # => ["I'm a string meing", "!"]

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).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.