We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
##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"