Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 345 Vote(s) - 3.53 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ruby: How to get the first character of a string

#11
In MRI 1.8.7 or greater:

'foobarbaz'.each_char.first
Reply

#12
"Smith"[0..0]

works in both ruby 1.8 and ruby 1.9.
Reply

#13
If you use a recent version of Ruby (1.9.0 or later), the following should work:

'Smith'[0] # => 'S'

If you use either 1.9.0+ or 1.8.7, the following should work:

'Smith'.chars.first # => 'S'

If you use a version older than 1.8.7, this should work:

'Smith'.split(//).first # => 'S'

Note that `'Smith'[0,1]` does *not* work on 1.8, it will *not* give you the first character, it will only give you the first *byte*.
Reply

#14
Because of an annoying design choice in Ruby before 1.9 — `some_string[0]` returns the **character code** of the first character — the most portable way to write this is `some_string[0,1]`, which tells it to get a substring at index 0 that's 1 character long.
Reply

#15
>> s = 'Smith'
=> "Smith"
>> s[0]
=> "S"

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through