Skip to content
Quintin edited this page Sep 18, 2015 · 4 revisions

##char splits string into an array

"test".char -> ['t','e','s','t']

##count counts length of string

"test".count -> 4

##upcase capitalizes the whole string

"test".upcase -> "TEST"

##downcase returns a lowercase string

"TEST".downcase -> "test"
Clone this wiki locally