in reply to Re^5: How to display first line of each record using the question code
in thread How to display first line of each record using the question code
This particular code is trying to get the first line of each record
([^\n]*)while(<FileHandler>) if(/([^\n]*)\n(.*)/sm) { print "$1\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: How to display first line of each record using the question code
by LanX (Saint) on May 18, 2013 at 17:55 UTC | |
|