Caution: Java String::Split() Does Not Create A ColdFusion Array

<!--- Set up the words list. --->
<cfset strWords = "I like to move it, move it!" />
 
<!---
	Create the words array using the underlying
	Java method, String::Split().
--->
<cfset arrWordsJava = strWords.Split( " {1}" ) />
 
 
<!---
	Create the words array using the ColdFusion
	function ListToArray().
--->
<cfset arrWordsCF = ListToArray( strWords, " " ) />

For Cut-and-Paste