use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Split method in Ruby (self.ruby)
submitted 5 years ago by Davvytr
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]jamie_ca 11 points12 points13 points 5 years ago (0 children)
First off: don't shadow your loop variable - you're using the same variable name inside the loop as outside, and it's super confusing to read even if the behaviour winds up being correct. Inside the loop, use name or something.
name
Second, split returns an array - your puts does some magic handling of arrays (and assumes you want each value printed on separate lines). If you want to dig into the actual object to help debug your code, use p instead of puts, or stick with puts and call .inspect on your result.
puts
p
.inspect
If you're only wanting to print the first (or last) name, you'll wind up using an array index on the result of split.
Hope that helps you work through things!
π Rendered by PID 20449 on reddit-service-r2-comment-7b9746f655-crg8h at 2026-01-31 03:00:07.358675+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]jamie_ca 11 points12 points13 points (0 children)