Thread Suche nach mehrfachen Namen in einer TXT Datei (4 answers)
Opened by Rambo at 2010-10-21 16:45

FIFO
 2010-10-21 17:07
#142099 #142099
User since
2005-06-01
469 Artikel
BenutzerIn

user image
2010-10-21T14:58:12 renee
Code (perl): (dl )
1
2
use Data::Dumper;
    my ($name) = $line =~ m! \A 1\. (.*) \z!


Bei den Beispieldaten des OP ist kein whitespace zwischen "1." und Namen, vielleicht für alle Fälle:
Code (perl): (dl )
my ($name) = $line =~ m! \A 1\. \s* (.*) \z!x;

... und mit Semikolon ;-)
Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"

View full thread Suche nach mehrfachen Namen in einer TXT Datei