Utility CSV To XML
This handler converts a comma-separated value string into an XML string.
Downloads
By downloading this file, you acknowledge that you agree to our Terms of Service
Detailed Description
Below is an example of CSV input strings and the corresponding XML output
generated by this handler.
CSV Input
"Red, Orange, Yellow, Green, Blue, Indigo , Violet"
XML Output
<list>
<item>Red</item>
<item>Orange</item>
<item>Yellow</item>
<item>Green</item>
<item>Blue</item>
<item>Indigo</item>
<item>Violet</item>
</list>
Parameters
Name | Description |
---|---|
CSV | The CSV String to be converted to XML. |
Sample Configuration
Parameter | Example Configuration |
---|---|
CSV | <%=@answers['Colors']%> |
Results
Name | Description |
---|---|
XML | An XML String that was converted from the given CSV String. |
Change Log
Version | Date | Description |
---|---|---|
1 | 2011-08-18 | Initial version |