Guest User

Untitled

a guest
Aug 8th, 2019
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.79 KB | None | 0 0
  1. For example:
  2.  
  3. Example input data looks like:
  4. 1,12345,7654321,1,08/08/19,08/08/19
  5. 2,12345,12345678,3
  6. 2,12345,22345679,7
  7. 2,12345,32345680,6
  8. 2,12345,42345681,2
  9. 3,12345,
  10.  
  11. What the data looks like from a human perspective:
  12. First line, ID, accountNo, ???, orderDate, orderDate
  13. Product row, ID, productCode, quantity
  14. Product row, ID, productCode, quantity
  15. Product row, ID, productCode, quantity
  16. Product row, ID, productCode, quantity
  17. Last Line, ID,
  18.  
  19. Output should be something like:
  20.  
  21. <?xml version="1.0"?>
  22. <orders><order accountNo="7654321" orderDate="08/08/19"><orderItems><orderItem productCode="12345678" quantity="3"/><orderItem productCode="22345679" quantity="7"/><orderItem productCode="32345680" quantity="6"/><orderItem productCode="42345681" quantity="2"/></orderItems></order></orders>
Advertisement
Add Comment
Please, Sign In to add comment