I've got an xml file with the following contents:
<authors>
<author>name 1</author>
<author>name 2</author>
<author>name 3</author>
</authors>
and I'd like to parse it with JSTL to a list like:
name1, name2, name3
and, if there are more than 3:
name1, name2, name3 et. al
I've got no problems using a <x:forEach ..> that puts out the names and to end at a specific author, but how to get the commas and check for the list length?