I am using Velocity Templating Language and currently have:
#set ( $stringList = $string.split(\",\") )
which works fine and splits the str
Tested in Velocity 1.6.
#foreach ($element in $string.split(";")) $element #end