in reply to Re^3: Change the behavior of Perl's IRS
in thread Change the behavior of Perl's IRS
What advantage does all that complexity, and 3 lines of code (don't forget the use), have over these 3?
local $/ = "myrecordsep\n"; scalar <DATA>; ## Discard first separator while (<DATA>) { ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Change the behavior of Perl's IRS
by ikegami (Patriarch) on Jul 16, 2007 at 02:31 UTC |