Getting array input from command line

Hi everyone,

I want to get some data from
a user, that I want to put in an
array.. well the first one is filename
and the rest are a bunch of numbers
which are sepparated by -i and -o
options.

inFile = ARGV[0]
myArr = -i params
myArr2 = -o params

Any help appreciated.
Ted.

···

--
Posted via http://www.ruby-forum.com/.

start fr a program that only contains:

p ARGV

kind regards -botp

···

On Sat, Jun 26, 2010 at 1:58 PM, Ted Flethuseo <flethuseo@gmail.com> wrote:

inFile = ARGV[0]
myArr = -i params
myArr2 = -o params

Also, check out OptionParser -
http://www.ruby-doc.org/stdlib/libdoc/optparse/rdoc/index.html

···

On 26 June 2010 06:58, Ted Flethuseo <flethuseo@gmail.com> wrote:

Hi everyone,

I want to get some data from
a user, that I want to put in an
array.. well the first one is filename
and the rest are a bunch of numbers
which are sepparated by -i and -o
options.

inFile = ARGV[0]
myArr = -i params
myArr2 = -o params

Any help appreciated.
Ted.
--
Posted via http://www.ruby-forum.com/\.

Cool, but now I'm having some trouble transforming the array from:

["0", "1", "2", "3"] to [0,1,2,3].. how can I do this?

Ted.

Lee Jarvis wrote:

···

On 26 June 2010 06:58, Ted Flethuseo <flethuseo@gmail.com> wrote:

inFile = ARGV[0]
myArr = -i params
myArr2 = -o params

Any help appreciated.
Ted.
--
Posted via http://www.ruby-forum.com/\.

Also, check out OptionParser -
http://www.ruby-doc.org/stdlib/libdoc/optparse/rdoc/index.html

--
Posted via http://www.ruby-forum.com/\.

"Ted Flethuseo" <flethuseo@gmail.com> wrote in message
news:2d79e2fe1837a47f100e9ce9efd4d72d@ruby-forum.com...

Cool, but now I'm having some trouble transforming the array from:

["0", "1", "2", "3"] to [0,1,2,3].. how can I do this?

Ted.

Lee Jarvis wrote:

inFile = ARGV[0]
myArr = -i params
myArr2 = -o params

Any help appreciated.
Ted.
--
Posted via http://www.ruby-forum.com/\.

Also, check out OptionParser -
http://www.ruby-doc.org/stdlib/libdoc/optparse/rdoc/index.html

--
Posted via http://www.ruby-forum.com/\.

a = ["1", "2,","3"]
a.map { |x| x.to_i }

HTH gfb

···

On 26 June 2010 06:58, Ted Flethuseo <flethuseo@gmail.com> wrote: