Published
- 1 min read
rails to_s capitaize
The solution for this is noted below
rails to_s capitaize
Solution
"hello world!".capitalize # "Hello world!"
"HELLO WORLD!".downcase # "hello world!"
"hello world!".upcase # "HELLO WORLD!"
"hello world!".titleize # "Hello World!"
Try other methods by searching on the site. That is if this doesn’t work