Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't know if I am just looking in the wrong part of the docs here or what... but what is the preferred way of removing the last x chars from a string?

share|improve this question

8 Answers

up vote 52 down vote accepted

If the characters you want to remove are always the same characters, then consider chomp:

'abc123'.chomp('123')    # => "abc"

The advantages of chomp are: no counting, and the code more clearly communicates what it is doing.

With no arguments, chomp removes the DOS or Unix line ending, if either is present:

"abc\n".chomp      # => "abc"
"abc\r\n".chomp    # => "abc"
share|improve this answer
Chop is also an option. It's less fussy about what gets removed. – Andrew Grimm Nov 4 '11 at 12:04
irb> 'now is the time'[0..-4]
=> "now is the t"
share|improve this answer
4  
Ross always saves me... thanks again man! – Joseph Silvashy Nov 17 '10 at 21:47
4  
Note that this only works in Ruby 1.9. In Ruby 1.8, this will remove the last bytes, not the last characters. – Jörg W Mittag Nov 17 '10 at 23:20
But he probably meant "bytes" if he is using 1.8.x. – DigitalRoss Aug 27 '11 at 17:29
str = str[0...-n]
share|improve this answer
4  
Note that this only works in Ruby 1.9. In Ruby 1.8, this will remove the last bytes, not the last characters. – Jörg W Mittag Nov 17 '10 at 23:21
2  
This is better than the chosen answer, since 3 dots (...) is easier to memorize since -n means take out n characters from the end of the string. – lulalala Nov 3 '11 at 4:24
name = "my text"
x.times do name.chop! end

Here in the console:

>name = "Nabucodonosor"
 => "Nabucodonosor" 
> 7.times do name.chop! end
 => 7 
> name
 => "Nabuco" 
share|improve this answer

I would suggest chop. I think it has been mentioned in one of the comments but without links or explanations so here's why I think it's better:

It simply removes the last character from a string and you don't have to specify any values for that to happen.

If you need to remove more than one character then chomp is your best bet. This is what the ruby docs have to say about chop:

Returns a new String with the last character removed. If the string ends with \r\n, both characters are removed. Applying chop to an empty string returns an empty string. String#chomp is often a safer alternative, as it leaves the string unchanged if it doesn’t end in a record separator.

Although this is used mostly to remove separators such as \r\n I've used it to remove the last character from a simple string, for example the s to make the word singular.

share|improve this answer
Wouldn't that just remove that single last character? The question is about "characters" in plural – maetthew Feb 10 at 2:54
Yes, you're right, but chomp('chars') will remove the last 'chars'. It wasn't clear to me if the OP wanted specific characters or just N characters. – kakubei Feb 11 at 8:43
Funny, this is the correct answer – Amala Apr 12 at 23:51

Check out the "slice" method:

http://www.ruby-doc.org/core/classes/String.html#M000843

share|improve this answer
Note that this only works in Ruby 1.9. In Ruby 1.8, this will remove the last bytes, not the last characters. – Jörg W Mittag Nov 17 '10 at 23:21

You can always use something like

 "string".sub!(/.{X}$/,'')

Where X is the number of characters to remove.

Or with assigning/using the result:

myvar = "string"[0..-X]

where X is the number of characters plus one to remove.

share|improve this answer
x = "my_test"
last_char = x.split('').last
share|improve this answer
question was about removing last N characters from a string, not about finding the last character – unnitallman Oct 20 '12 at 6:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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