I need to parse an XML in java which contains multi valued attributes. with delimiters, first value if delimited by "," comma then second value is delimited by ";" semi colon, third value is delimited by * star sign, and put the values inside the arraylist
SAMPLE XML
<ab:AttributeValue>name:may, age=23; sex:m*name:june, age=24;sex:m</ab:AttributeValue>
can anybody help me to write an algorithm in java for the above?