Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper I by nicolas.tscherter
function isAllUpper(text) {
return text.split(/[a-z]/).length ==1
}
June 15, 2020
Comments: