Ruby Cheat Sheet

Upper/lower case version of a string

"test".downcase
"test".upcase

Check if a string contains another string

my_string.include? "target"

Replace in string

stringVar.gsub("replacewhat","withthis") # add ! to replace in-place

Length of array

arrVar.length

Try/Catch exception handling

begin
   error_code_here()
rescue
   handle_error()
end

Ternary/conditional operator:

result = condition ? if_true : if_false

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s