Syntax

Casting

ExampleDescriptionOutput
13.to_fto float13.0
13.0.to_ito integer13
5.to_sto string"5"
5.to_ato array[5]
5.to_hto hash{5 => nil}

String Methods

ExampleDescriptionOutput
"hi"[0]first character of the string"h"
"hi banana"[0..1]substring from index 0 to 1"hi"
"hi banana"[0, 2]substring from index 0, length 2"hi"
"hi"[-1]last character of the string"i"
name = "bob"; "hi #{name}"string interpolation"hi bob"
"hi".capitalizecapitalize the first letter"Hi"
"hi".upcaseconvert to uppercase"HI"
"Hi".downcaseconvert to lowercase"hi"
"hi".include?("i")checks if substring is includedtrue
"hi".empty?checks if string is emptyfalse
"hi".lengthlength of the string2
"[1, 2, 3].join("-") joins array into string1-2-3
"hi".reversereverse the string"ih"
"hi all".splitsplit by whitespace["hi", "all"]
"hi".split("")split into characters["h", "i"]
" hi, all ".stripremove leading/trailing spaces"hi, all"
"he77o".sub("7", "l")replace first โ€œ7โ€ with โ€œlโ€"hel7o"
"he77o".gsub("7", "l")replace all โ€œ7โ€ with โ€œlโ€"hello"
"hi".insert(-1, " dude")insert substring at index"hi dude"
"hi all".delete("l")delete all โ€œlโ€"hi a"
"!".prepend("hi, ", "all")prepend strings"hi, all!"

Array Methods

ExampleDescriptionOutput
[1, 2, 3, 4, 5].firstfirst element of the array1
[1, 2, 3, 4, 5].lastlast element of the array5
[1, 2, 3, 4, 5].lengthlength of the array5
[1, 2, 3].push(4)add element to end[1, 2, 3, 4]
[1, 2, 3, 4].pop(2)remove last 2 elements3, 4
[1, 2, 3].unshift(0)add element to the beginning[0, 1, 2, 3]
[0, 1, 2, 3].shiftremove first element0
[0, 1].any? { |num| num > 5 }check if any meet conditionfalse
[0, 1].all? { |num| num > 5 }check if all meet conditionfalse
[0, 1].none? { |num| num > 5 }check if none meet conditiontrue
[1,[2, [3, 4]]].flattenflatten nested arrays[1, 2, 3, 4]

Documentation