XML-Dokument in CSV-Ausgabe wandeln

Task

Source document

Your are at the green marked position

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

Challenge

Wandeln Sie die XML-Repräsentation in eine komma separierte Variante.

Desired selection (text output)

1;"Hans";"Peter";44

Exercise

Your input

Eine Lösung wäre: Lösung