<!--- Set string value. --->
<cfset strText = "Libby is FUNNY" />

<!--- Check case-sensitive match. --->
#strText.Matches( "[a-z ]+" )#

<!--- Check case-INsensitive match. --->
#strText.Matches( "(?i)[a-z ]+" )#