[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Newbie: if / elseif

M Wells

3/15/2007

Hi All,

I'm a little confused about why the following two pieces of code seem
to behave differently:

if $val =~ /this/i
puts "this"
elseif $val =~ /that/i
puts "that"
elseif $val =~ /the other/i
puts "the other"
end

if $val contains "this is the other value", for some reason "the
other" is not put by the last elseif statement. However, the following
code works as expected:

if $val =~ /this/i
puts "this"
end
if $val =~ /that/i
puts "that"
end
if $val =~ /the other/i
puts "the other"
end

Am I missing something about if / elseif in ruby?

Any help appreciated!

pt

10 Answers

M Wells

3/15/2007 12:03:00 AM

0

On Mar 15, 9:59 am, "planetthoughtful" <planetthought...@gmail.com>
wrote:

> Am I missing something about if / elseif in ruby?

Obviously I was missing something - the correct syntax. I'm now aware
that the syntax should be "elsif" rather than "elseif".

Thanks all,

pt

7stud 7stud

3/15/2007 12:20:00 AM

0

planetthoughtful wrote:
> On Mar 15, 9:59 am, "planetthoughtful" <planetthought...@gmail.com>
> wrote:
>
>> Am I missing something about if / elseif in ruby?
>
> Obviously I was missing something - the correct syntax. I'm now aware
> that the syntax should be "elsif" rather than "elseif".
>
> Thanks all,
>
> pt

You're not the only one. I wasn't quite so generous:

http://www.ruby-...topic/...


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

Augie De Blieck Jr.

3/15/2007 3:12:00 AM

0

> if $val =~ /this/i
> puts "this"
> elseif $val =~ /that/i
> puts "that"
> elseif $val =~ /the other/i
> puts "the other"
> end

Just remember that even when you spell it right, it's going to drop
out of the whole construct just as soon as it fulfills a RegEx. After
it prints "this," it stops looking at any of the other "elsif"
statements.

That short circuiting is a feature. =)

-Augie

Chad Perrin

3/15/2007 3:20:00 AM

0

On Thu, Mar 15, 2007 at 12:12:17PM +0900, Augie De Blieck Jr. wrote:
> >if $val =~ /this/i
> > puts "this"
> >elseif $val =~ /that/i
> > puts "that"
> >elseif $val =~ /the other/i
> > puts "the other"
> >end
>
> Just remember that even when you spell it right, it's going to drop
> out of the whole construct just as soon as it fulfills a RegEx. After
> it prints "this," it stops looking at any of the other "elsif"
> statements.
>
> That short circuiting is a feature. =)

Indeed -- that's the whole point of using elsif rather than just a list
of separate if statements. The if/elsif/else construct is used for
mutually exclusive flow control, where only one of several is to be
executed. Using a series of if statements considers each in a vacuum,
in order, while if/elsif/else considers them all as part of a greater
whole.

--
CCD CopyWrite Chad Perrin [ http://ccd.ap... ]
"Real ugliness is not harsh-looking syntax, but having to
build programs out of the wrong concepts." - Paul Graham

M Wells

3/15/2007 4:01:00 AM

0

On Mar 15, 1:12 pm, "Augie De Blieck Jr." <augi...@gmail.com> wrote:
> > if $val =~ /this/i
> > puts "this"
> > elseif $val =~ /that/i
> > puts "that"
> > elseif $val =~ /the other/i
> > puts "the other"
> > end
>
> Just remember that even when you spell it right, it's going to drop
> out of the whole construct just as soon as it fulfills a RegEx. After
> it prints "this," it stops looking at any of the other "elsif"
> statements.

Yes, that was the behaviour I was looking for. I noticed I provided an
ambiguous example in that in another construct it would possibly have
matched two different conditions. However, in my actual script I am
looking for values that are mutually exclusive, so exiting on finding
a value is fine.

All the best,

pt

John Joyce

3/15/2007 5:42:00 AM

0

So it doesn't work like the C variety?

if ( condition )
statement // maybe done
else if ( condition )
statement // or maybe done
else
statement // done if the 1st and 2nd are not done


Honestly, my biggest difficulties so far are that I think of code
somewhere between C and PHP (I like to call it a nicer C)
On Mar 15, 2007, at 12:20 PM, Chad Perrin wrote:

> On Thu, Mar 15, 2007 at 12:12:17PM +0900, Augie De Blieck Jr. wrote:
>>> if $val =~ /this/i
>>> puts "this"
>>> elseif $val =~ /that/i
>>> puts "that"
>>> elseif $val =~ /the other/i
>>> puts "the other"
>>> end
>>
>> Just remember that even when you spell it right, it's going to drop
>> out of the whole construct just as soon as it fulfills a RegEx.
>> After
>> it prints "this," it stops looking at any of the other "elsif"
>> statements.
>>
>> That short circuiting is a feature. =)
>
> Indeed -- that's the whole point of using elsif rather than just a
> list
> of separate if statements. The if/elsif/else construct is used for
> mutually exclusive flow control, where only one of several is to be
> executed. Using a series of if statements considers each in a vacuum,
> in order, while if/elsif/else considers them all as part of a greater
> whole.
>
> --
> CCD CopyWrite Chad Perrin [ http://ccd.ap... ]
> "Real ugliness is not harsh-looking syntax, but having to
> build programs out of the wrong concepts." - Paul Graham
>


Chad Perrin

3/15/2007 8:20:00 AM

0

On Thu, Mar 15, 2007 at 02:41:53PM +0900, John Joyce wrote:
> So it doesn't work like the C variety?
>
> if ( condition )
> statement // maybe done
> else if ( condition )
> statement // or maybe done
> else
> statement // done if the 1st and 2nd are not done

Err . . . I'm pretty sure if, elsif, else works exactly like the C if,
else if, else.

--
CCD CopyWrite Chad Perrin [ http://ccd.ap... ]
"The first rule of magic is simple. Don't waste your time waving your
hands and hopping when a rock or a club will do." - McCloctnick the Lucid

Gavin Kistner

3/16/2007 9:33:00 PM

0

On Mar 14, 5:59 pm, "planetthoughtful" <planetthought...@gmail.com>
wrote:
> I'm a little confused about why the following two pieces of code seem
> to behave differently:
>
> if $val =~ /this/i
> puts "this"
> elseif $val =~ /that/i
> puts "that"
> elseif $val =~ /the other/i
> puts "the other"
> end

Thought I'd point out that Ruby's case statement is more powerful than
many other languages' switch statements:

%w| pthisic thatch mother armadillo |.each{ |val|
case val
when /this/i
puts "'#{val}' contains 'this'"
when /that/i
puts "'#{val}' contains 'that'"
when /other/i
puts "'#{val}' contains 'other'"
else
puts "'#{val}' does not contain 'this', 'that', or 'other'"
end
}

#=> 'pthisic' contains 'this'
#=> 'thatch' contains 'that'
#=> 'mother' contains 'other'
#=> 'armadillo' does not contain 'this', 'that', or 'other'


Also, note (as seen above) that the regexp you supplied as example
match substrings even inside words. Just in case you wanted exact case-
insenstive string matching, perhaps /\Athis\Z/i would be more
appropriate. If you wanted exact word matching, perhaps /\bthis\b/i
might be what you want.

dblack

3/16/2007 10:21:00 PM

0

Hi --

On 3/15/07, Chad Perrin <perrin@apotheon.com> wrote:
> On Thu, Mar 15, 2007 at 02:41:53PM +0900, John Joyce wrote:
> > So it doesn't work like the C variety?
> >
> > if ( condition )
> > statement // maybe done
> > else if ( condition )
> > statement // or maybe done
> > else
> > statement // done if the 1st and 2nd are not done
>
> Err . . . I'm pretty sure if, elsif, else works exactly like the C if,
> else if, else.

Pretty much, except in Ruby there's no need for a rule to resolve
if/else ambiguity, because 'end' always makes it clear.


David

--
Q. What is THE Ruby book for Rails developers?
A. RUBY FOR RAILS by David A. Black (http://www.manning...)
(See what readers are saying! http://www.r.../r...)
Q. Where can I get Ruby/Rails on-site training, consulting, coaching?
A. Ruby Power and Light, LLC (http://www.r...)

Chad Perrin

3/16/2007 11:06:00 PM

0

On Sat, Mar 17, 2007 at 07:20:42AM +0900, David A. Black wrote:
> Hi --
>
> On 3/15/07, Chad Perrin <perrin@apotheon.com> wrote:
> >On Thu, Mar 15, 2007 at 02:41:53PM +0900, John Joyce wrote:
> >> So it doesn't work like the C variety?
> >>
> >> if ( condition )
> >> statement // maybe done
> >> else if ( condition )
> >> statement // or maybe done
> >> else
> >> statement // done if the 1st and 2nd are not done
> >
> >Err . . . I'm pretty sure if, elsif, else works exactly like the C if,
> >else if, else.
>
> Pretty much, except in Ruby there's no need for a rule to resolve
> if/else ambiguity, because 'end' always makes it clear.

Thanks for adding that. I had forgotten about that, largely because I
haven't written a line of C/C++ in about five years.

I imagine there are other differences as well, but for the general case
I haven't run across any (yet). Still new to Ruby, may just not have
encountered further differences yet.

--
CCD CopyWrite Chad Perrin [ http://ccd.ap... ]
"Real ugliness is not harsh-looking syntax, but having to
build programs out of the wrong concepts." - Paul Graham