本文介绍了如何检查一个单词是否已经全部大写?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够检查一个单词是否已经全部大写.它还可能包含数字.
I want to be able to check if a word is already all uppercase. And it might also include numbers.
示例:
GO234 => yes
Go234 => no
推荐答案
您可以将字符串与相同但大写的字符串进行比较:
You can compare the string with the same string but in uppercase:
'go234' == 'go234'.upcase #=> false
'GO234' == 'GO234'.upcase #=> true
这篇关于如何检查一个单词是否已经全部大写?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!