Split an element in an array into different fields using :

P

Peter Loftus

Hey guys so i have a example of splitting elements in an array and
getting the third word. Im using spaces to split it. Anyone know how to
split it if i need to use : instead of spaces

arr = File.readlines("sample.txt")
arr.map! {|line| line.split("\s")[2]}
 
F

Farrel Lifson

Hey guys so i have a example of splitting elements in an array and
getting the third word. Im using spaces to split it. Anyone know how to
split it if i need to use : instead of spaces

arr = File.readlines("sample.txt")
arr.map! {|line| line.split("\s")[2]}

line.split(':')

Farrel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,772
Messages
2,569,591
Members
45,100
Latest member
MelodeeFaj
Top