Case Insensitive Java Regular Expressions - How Did I Miss That!?!

<!--- Set string value. --->
<cfset strText = "Libby is HOT" />
 
<!--- Check case-sensitive match. --->
#strText.Matches( "[a-z ]+" )#
 
<!--- Check case-INsensitive match. --->
#strText.Matches( "(?i)[a-z ]+" )#

For Cut-and-Paste