I have a property of comma seperated values, eg. a,b,c
I want to break this apart and create a path of different filesets; eg.
<path id="compile.path">
<fileset dir="..\a\lib\"/>
<fileset dir="..\b\lib\"/>
<fileset dir="..\c\lib\"/>
</path>
Is this possible? How do I do it? I'm not very familiar with ant. Any help appreciated.