in reply to Extracting data from a particular line to end of the file
i want to extract everything from a particular line starting with a character * till end of file.
while ( <FILEHANDLE> ) { print if /\A\*particular line/ .. eof FILEHANDLE; } [download]