I am trying to find a function for select e.g. first 100 chars of the string. In PHP exist substr function
Have Ruby some similar function?
Thanks a lot, M.
Try foo[0...100], any range will do. Ranges can also go negative. It is well explained in the documentation of Ruby.
foo[0...100]
foo[0..100]
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
1480 times
active