x = "text"
last_char = x[x.length-1, x.length-1]
--
Posted via http://www.ruby-forum.com/.
> Hello
Hello.
> I'm new to Ruby.
Welcome then.
> I've a simple question.
> Is there a more readable way to get last character from string than
> this
> one? :
>
> x = "text"
> last_char = x[x.length-1, x.length-1]
Strings can take a negative index, which count backwards from the end
of the String, and an length of how many characters you want (one in
this example). Using that:
"test"[-1, 1] # => "t"
Hope that helps.
James Edward Gray II
last_char = x[-1,1]
A negative index counts from the right-hand end of the string.
You can do:
last_char = x[-1,1]
or # possibly too arcane
last_char = x.split('').last
The second has the advantage of being (I think) multibyte-character safe.
[tiger-ppc.gfbm:246]bystr> irb
irb(main):001:0> s = "abc"
=> "abc"
irb(main):002:0> s[-1]
=> 99
irb(main):003:0> s[-1].chr
=> "c"
irb(main):004:0>
> -----Original Message-----
> From: list-...@example.com
> [mailto:list-...@example.com] On Behalf Of draco draco
> Sent: Saturday, February 11, 2006 16:08
> To: ruby-talk ML
> Subject: Getting last character from a string
>
> Hello
> I'm new to Ruby. I've a simple question.
> Is there a more readable way to get last character from
> string than this one? :
>
> x = "text"
> last_char = x[x.length-1, x.length-1]
>
"abc"[ -1..-1 ]
"abc".slice(-1,1)
"abc".slice(-1).chr
"abc"[ /.$/ ]
"abc".reverse[0,1]
"abc".split('').pop
class String
def last
self[-1,1]
end
end
"abc".last
x[-1,1] looks far more readable than x[x.length-1, x.length-1]
Thanks a lot :)