IsLower
<evalcmd> IsLower && bool && True if string consists only of lowercase letters. && string && string && String to test. </evalcmd>
Returns True if string consists entirely of lowercase letters, otherwise returns False.
Output(IsLower("abcde"))
--> true
Output(IsLower("abCde"))
--> false
最后更新于