I want to be able to check if a word is already all uppercase. And it might also include numbers.
Example:
GO234 => yes Go234 => no
You can compare the string with the same string but in uppercase:
'go234' == 'go234'.upcase #=> false 'GO234' == 'GO234'.upcase #=> true
1.4m articles
1.4m replys
5 comments
57.0k users