Solved
A basic foreach issue
Basic as in simple.. not as in BASIC (sorry - old person language joke)
I have this simple piece of code
#set ($seminarList = "A;1|B;5|C;3")
#foreach ($myitem in $seminarList.split("[|]"))
${myitem}
#end
And it is spitting the dummy (completely refusing to do anything useful).
I was expecting it to spit out A;1 B;5 C;3 (obviously, no styling on this yet, but that's not the current issue)
What am I managing to miss here?