Thread Array-Block speichern (3 answers)
Opened by RhoenSprudel at 2014-11-28 22:51

RhoenSprudel
 2014-11-28 22:51
#178591 #178591
User since
2014-11-28
3 Artikel
BenutzerIn
[default_avatar]
Hallo Leute ich habe schon länger ein etwas simples Problem. Ich bin ein absoluter Neuling in Perl und komme einfach nicht auf eine entsprechende Lösung.

Ich habe eine Textdatei die etwa so aufgebaut ist:

###### interface INFORMATION ######
Information 1a
Information 1b
Information 1c
Information 2a
Information 3a
Information 3b
....
###### interface INFORMATION ######
Information 1a
Information 1b
Information 1c
Information 2a
Information 3a
....

Die Textdatei ist sehr lange und die Punkte stellen weitere Informationen dar. Wie oft welche Information vorkommt(1a,1b,1c,1d,1e,2a,2b) ist meist unterschiedlich. Ich möchte das irgendwann mal so darstellen:

interface: "entsprechendes Interface"
Information 1: a, b, c, d
Information 2: a, b, c

Jetzt meine Frage: Kann ich nicht einfach den kompletten Block ab "interface" bis zum nächsten in ein Array speichern? Die Ausgabe von $var[1] würde dann halt so lauten:

###### interface INFORMATION ######
Information 1a
Information 1b
Information 1c
Information 2a
Information 3a
Information 3b

Der Rest der "interfaces" wäre dann in den anderen Teilen des Arrays. Mir würde es helfen, wenn ihr mir erklären könnt, wie ich diesen "Block" in ein Array speichern kann. Die Ausgabe und Darstellung würde ich denke ich selber hinbekommen.

Ich bedanke mich für eure Hilfe und euren Mühen. Für weitere Erklärungen und Erläuterungen stehe ich natürlich sofort bereit.

Viele Grüße
Last edited: 2014-11-28 23:02:45 +0100 (CET)

View full thread Array-Block speichern