IsCharCapped
not ratedThis function will do just as it's name implies, return a boolean if the passed char (1-sized string) is capped.
function IsCharCapped takes string char returns boolean
return (StringCase(char,true) == char)
endfunctionNo comments.