New to Ruby from CF

B

Ben V.

I'm new to Ruby and Rails from Coldfusion, and I am already finding how
much easier Ruby programming is, yet one thing that I haven't quite
figured out how to do in Ruby is to test whether for example, a contains
b. In Coldfusion we did <cfif a CONTAINS b>, but I can't seem to find a
CONTAINS() function or operator in Ruby. What would be the Ruby
equivalent of the code above? And How would I test if one var contains
another, or another string? Thanks for your help and time.
 
P

Phillip Hutchings

I'm new to Ruby and Rails from Coldfusion, and I am already finding how
much easier Ruby programming is, yet one thing that I haven't quite
figured out how to do in Ruby is to test whether for example, a contains
b. In Coldfusion we did <cfif a CONTAINS b>, but I can't seem to find a
CONTAINS() function or operator in Ruby. What would be the Ruby
equivalent of the code above? And How would I test if one var contains
another, or another string? Thanks for your help and time.

if a.include? b

Check the documentation for Array and Hash.
 
J

Justin Collins

Phillip said:
if a.include? b

Check the documentation for Array and Hash.
Also works for strings, if that's what you meant. (Don't know Coldfusion).

-Justin
 
B

Ben V.

Thanks, sorry for the stupid question, but hopefully I'll get the hang
of Ruby. You would consider CF as a relatively easy language, but it's
nothing like Ruby.
 

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

Forum statistics

Threads
474,209
Messages
2,571,087
Members
47,684
Latest member
Rashi Yadav

Latest Threads

Top