Marc Santhoff <M.Santhoff(at)t-online.de> wrote:
> Ich bin auf der Suche nach dem passenden regulären Ausdruck um eine we
> folgt aufgebaute Zeichenkette aus einer Datei in ein hash zu split()'ten
> (wobei ich nur minimale Ahnung von Perl habe, ich hoffe das wird
> besser):
>
> Name1 <ein oder mehrere Tabs und Leerzeichen> Bezeichnung1
> Name2 <ein oder mehrere Tabs und Leerzeichen> Bezeichnung2
Muß es unbedingt Perl sein? :-) In Python sähe es so aus:
x = dict([line.split() for line in file("dateiname")])
Da braucht man keinen ekligen regulären Ausdruck für.
SCNR. :-)
Gruß
Olli
PS: Ich hoffe, ich habe den Aufbau Deiner Datei richtig
verstanden.
PPS: Sorry für off-topic.
-- Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "Python is an experiment in how much freedom programmers need. Too much freedom and nobody can read another's code; too little and expressiveness is endangered." -- Guido van Rossum To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org with "unsubscribe de-bsd-questions" in the body of the messageReceived on Thu 13 May 2004 - 21:20:25 CEST