Perl Tipps und Tricks

From Lolly's Wiki
Revision as of 14:05, 6 October 2014 by Lollypop (talk | contribs) (Die Seite wurde neu angelegt: „Kategorie:Perl ==Unread while reading from filehandle== Dov Grobgeld made my day! <source lang=perl> # Found at a comment of Dov Grobgeld at https://gro…“)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Kategorie:Perl

Unread while reading from filehandle

Dov Grobgeld made my day!

# Found at a comment of Dov Grobgeld at https://groups.google.com/d/msg/comp.lang.perl/7fPyGpWpP8M/hc7xTMvAoW0J
while($_ = shift(@linestack) || <IN>) {
         :
             push(@linestack, $whatever);   # unread
}