Thread Suche nach mehrfachen Namen in einer TXT Datei
(4 answers)
Opened by Rambo at 2010-10-21 16:45 2010-10-21T14:58:12 renee 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"
|