Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 2.0.0p247 :001 > array = ["hello world"]
- => ["hello world"]
- 2.0.0p247 :002 > array.map!{ |entry| entry.split[-1] }
- => ["world"]
- 2.0.0p247 :003 > array
- => ["world"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement