Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3437624
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:05:17+00:00 2026-05-18T08:05:17+00:00

what happens after the eof is reached with <> operator in perl? I’m reading

  • 0

what happens after the eof is reached with <> operator in perl?

I’m reading INP1 line by line with

while(<INP1>) {
}

but I need to do this reading multiple times and I need to start from the beginning of the file each time. How can I do that? Is there something like refreshing the stream in perl?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T08:05:18+00:00Added an answer on May 18, 2026 at 8:05 am

    If INP1 is connected to a regular filehandle (not a socket handle or pipe handle), you can also seek back to the beginning of the file.

    while(<INP1>) {
       ...
    }
    seek INP1, 0, 0;
    
    # do it again
    while (<INP1>) {
       ...
    }
    

    Another option is to load the entire file into an array one time, and then loop through that array as often as you wish. This is a good idea if the whole file fits comfortably in memory and if the contents of the file won’t change between traversals.

    open INP1, '<', $the_file;
    @INP1 = <INP1>;
    close INP1;
    
    foreach (@INP1) {
       ...
    }
    
    # do it again
    foreach (@INP1) {
       ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This happens after I hit Build and Go to run my app on my
Why does it always happen to me? This happens after my application verify for
I am receiving a StackOverflowError while rendering a JSF page. It happens after loading
I've the code shown below but nothing happens after execution system('mysqldump -u USER -pPASS
I'm wondering what happens after the constructor is done executing my code, because the
What happens with the NSUserDefaults values and the SQLite database after updating the application
After the boot loader hands execution over to the kernel, what happens? I know
I have two pages, on the first page after an event happens I change
What happens in the following code? Does the synchronization work? This is an interview
I'd like to debug my app step-by-step to see what happens AFTER the form

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.