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 7838419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:05:59+00:00 2026-06-02T15:05:59+00:00

In C++, is there a function in the fstream library (or any library) that

  • 0

In C++, is there a function in the fstream library (or any library) that allows me to read a line to a delimiter of ‘\n’ without extracting?

I know the peek() function allows the program to ‘peek’ at the next character its reading in without extracting but I need a peek() like function that does that but for a whole line.

  • 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-06-02T15:06:00+00:00Added an answer on June 2, 2026 at 3:06 pm

    You can do this with a combination of getline, tellg and seekg.

    #include <fstream>
    #include <iostream>
    #include <ios>
    
    
    int main () {
        std::fstream fs(__FILE__);
        std::string line;
    
        // Get current position
        int len = fs.tellg();
    
        // Read line
        getline(fs, line);
    
        // Print first line in file
        std::cout << "First line: " << line << std::endl;
    
        // Return to position before "Read line".
        fs.seekg(len ,std::ios_base::beg);
    
        // Print whole file
        while (getline(fs ,line)) std::cout << line << std::endl;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is there any function in C++ that calculates a fingerprint or hash of a
I want to add a new (fstream) function in a program that already uses
Is there a function in c# that takes two 32 bit integers (int) and
Is there any function available in PHP to check whether an array is empty
Is there a function that tells what class you are extending? Like function_exists? I
Is there any function in C on linux by which we can query MX
Is there a function that takes 1,2,3 and returns 3,1,2 respectively and vice-verse. eg:
I'd like to read line from file with fstream (I used this before with
As you all know there are libraries using streams such as iostream and fstream
I am writing on a graph library that should read the most common graph

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.