Change XML document into CSV output

Aufgabenstellung

Quelldokument

Sie befinden sich an der grün markierten Position

<row>
  <cell name="id">1</cell>
  <cell name="firstName">Hans</cell>
  <cell name="lastName">Peter</cell>
  <cell name="age">44</cell>
</row>

Aufgabe

Change the XML representation into a comma-separated variant.

Gewünschte Selektion (Textausgabe)

1;"Hans";"Peter";44

Übung

Ihre Eingabe

Eine Lösung wäre: Lösung