Question

How to detect in Ruby if a sentence has all lower case letters? Likewise, how to detect if a sentence has all uppercase letters?

You can assume this is an English sentence with no foreign characters.

Simple question, I know. Please excuse brevity.

No correct solution

OTHER TIPS

'string' == 'string'.downcase

If the string is equal to the string with all letters lowercased, then all letters are lowercased.

See here and here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top