[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Console IO

Shane Emmons

3/24/2006 4:39:00 PM

Is there a simpler way to do the following?

<code>

Person = Struct.new( :first_name, :last_name )

print "Enter first name: "
first_name = gets.chomp.capitalize

print "Enter last name: "
last_name = gets.chomp.capitalize

p = Person.new( first_name, last_name )

printf "Hello %s %s.\n", p.first_name, p.last_name

</code>

My idea was to create a function the prints a message and then takes
console output. What I want to do is not have to create the extra
objects for first and last name. Below is the solution I can up with.

<code>

def pgets( msg )
print msg
gets
end

Person = Struct.new( :first_name, :last_name )

p = Person.new(
pgets( "Enter first name: " ).chomp.capitalize,
pgets( "Enter last name: " ).chomp.capitalize
)

printf "Hello %s %s.\n", p.first_name, p.last_name

</code>

Thanks,
Shane

7 Answers

James Gray

3/24/2006 5:13:00 PM

0

On Mar 24, 2006, at 10:43 AM, semmons99@gmail.com wrote:

> Is there a simpler way to do the following?

HighLine makes this kind of thing pretty simple:

Neo:~/Desktop$ ls
person.rb
Neo:~/Desktop$ ruby -rubygems person.rb
Name? (last, first) Gray, James
--- !ruby/struct:Person
first_name: James
last_name: Gray
Neo:~/Desktop$ cat person.rb
#!/usr/local/bin/ruby -w

require "highline/import"
require "yaml"

class Person < Struct.new(:first_name, :last_name)
def self.parse( input )
if input =~ /^\s*(\w+),\s*(\w+)\s*$/
self.new($2, $1)
else
raise ArgumentError, "Invalid name format."
end
end
end

who = ask("Name? (last, first) ", Person)
y who

__END__

Hope that helps.

James Edward Gray II



dishmael

3/24/2006 5:32:00 PM

0

Not to shanghai this convo (but its sort of on the same subject), is there a
way to prompt for a response in-line with your question rather than printing
the question and then having it go to the next line?

-Dave


-----Original Message-----
From: James Edward Gray II [mailto:james@grayproductions.net]
Sent: Friday, March 24, 2006 12:13 PM
To: ruby-talk ML
Subject: Re: Console IO

On Mar 24, 2006, at 10:43 AM, semmons99@gmail.com wrote:

> Is there a simpler way to do the following?

HighLine makes this kind of thing pretty simple:

Neo:~/Desktop$ ls
person.rb
Neo:~/Desktop$ ruby -rubygems person.rb
Name? (last, first) Gray, James
--- !ruby/struct:Person
first_name: James
last_name: Gray
Neo:~/Desktop$ cat person.rb
#!/usr/local/bin/ruby -w

require "highline/import"
require "yaml"

class Person < Struct.new(:first_name, :last_name)
def self.parse( input )
if input =~ /^\s*(\w+),\s*(\w+)\s*$/
self.new($2, $1)
else
raise ArgumentError, "Invalid name format."
end
end
end

who = ask("Name? (last, first) ", Person)
y who

__END__

Hope that helps.

James Edward Gray II




Daniel Harple

3/24/2006 5:37:00 PM

0

On Mar 24, 2006, at 6:31 PM, David Ishmael wrote:

> Not to shanghai this convo (but its sort of on the same subject),
> is there a
> way to prompt for a response in-line with your question rather than
> printing
> the question and then having it go to the next line?

Yes, either set $stdout.sync = true, or call $stdout.flush.

-- Daniel


James Gray

3/24/2006 5:51:00 PM

0

On Mar 24, 2006, at 11:31 AM, David Ishmael wrote:

> Not to shanghai this convo (but its sort of on the same subject),
> is there a
> way to prompt for a response in-line with your question rather than
> printing
> the question and then having it go to the next line?

The HighLine example I posted does exactly that. The space at the
end of the question is a hint to HighLine that I'll take the answer
on the same line.

James Edward Gray II


James Gray

3/24/2006 5:53:00 PM

0

On Mar 24, 2006, at 11:36 AM, Daniel Harple wrote:

> On Mar 24, 2006, at 6:31 PM, David Ishmael wrote:
>
>> Not to shanghai this convo (but its sort of on the same subject),
>> is there a
>> way to prompt for a response in-line with your question rather
>> than printing
>> the question and then having it go to the next line?
>
> Yes, either set $stdout.sync = true, or call $stdout.flush.

Neither seem to be required:

$ ruby -e 'print "Name? "; gets; puts "Hello #$_"'
Name? James
Hello James

Ruby is a pretty clever girl. ;)

James Edward Gray II


dishmael

3/24/2006 5:59:00 PM

0

Perfect, thx!


-----Original Message-----
From: James Edward Gray II [mailto:james@grayproductions.net]
Sent: Friday, March 24, 2006 12:53 PM
To: ruby-talk ML
Subject: Re: Console IO

On Mar 24, 2006, at 11:36 AM, Daniel Harple wrote:

> On Mar 24, 2006, at 6:31 PM, David Ishmael wrote:
>
>> Not to shanghai this convo (but its sort of on the same subject),
>> is there a
>> way to prompt for a response in-line with your question rather
>> than printing
>> the question and then having it go to the next line?
>
> Yes, either set $stdout.sync = true, or call $stdout.flush.

Neither seem to be required:

$ ruby -e 'print "Name? "; gets; puts "Hello #$_"'
Name? James
Hello James

Ruby is a pretty clever girl. ;)

James Edward Gray II



Shane Emmons

3/24/2006 6:11:00 PM

0

Thanks James that's a really nice solution.