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

  • Home
  • SEARCH
  • 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 6690079
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:35:40+00:00 2026-05-26T05:35:40+00:00

So I have this assignment for a beginner course in Perl and I have

  • 0

So I have this assignment for a beginner course in Perl and I have done some stuff and they worked out good, but i’ve totally run into a brick wall here and I can’t get any further, and my guess is the answer is really simple only that I can’t seem to fix it.

I have a text file with some text in it, simply what I’m trying to do is write the content of that file to the Terminal, this I can do with

open (DATA, "example.txt") or die "an error occured: $!";

while(<DATA>)
{
print "$_\n";
}

But, I also need to add numbering to each line of the output and I’m trying with $. but that only gives me a “1” as an output, I have been trying different stuff here all morning but I can’t seem to figure this out.

What I want is an output that looks like this:

  1. Lorem ipsum dolor sit amet
  2. consectetur adipiscing elit
  3. Maecenas iaculis vulputate eros
  4. —-
  5. —-

And so on.

Anyone that can help me out with this?

  • 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-26T05:35:41+00:00Added an answer on May 26, 2026 at 5:35 am
    open (DATA, "example.txt") or die "an error occured: $!";
    
    while(<DATA>) {
      print "$.. $_\n";
    }
    

    To start a new line after every sentence (full stop followed by at least one blank), you could use something like the following:

    $line = 0;
    while(<DATA>)
    {
      @lines = split /\. +/;
      for (@lines) {
        ++$line;
        print "$line. $_\n";
      }
    }
    

    (Very likely there is a better perl idiom for this …)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is uni assignment and I have already done some stuff. Please go to
I'm still not very good with data structures, but I have this homework assignment
I have this school assignment that I've been working on and am totally stumped
I have this code for a school assignment, but i can't manage to format
so I have this assignment and they are asking for data given by Xslt
I have this assignment that I've tried. But when I enter 1 it should
I obviously do not 'grok' C++. On this programming assignment, I have hit a
(this is indirectly a part of a much larger homework assignment) I have something
I'm currently working on an assignment and this have had me stuck for hours.
I have this Perl subroutine that is causing a problem: sub new { my

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.