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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T11:03:41+00:00 2026-06-07T11:03:41+00:00

I am reading a complete file in a string and then doing a regex

  • 0

I am reading a complete file in a string and then doing a regex match as below:

if($str =~ m/$regex/gc) {
     $offset = $+[0];
}

Using this code, I can capture the position where the last successful match ends.

Now this will give the position as character number.

Is there any way that I can get offset as line number?

What I am doing for now is that I am counting the number of newline characters from beginning of $str upto end $offset.

I want to know is there a direct way to capture line number for a regex match.

  • 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-07T11:03:42+00:00Added an answer on June 7, 2026 at 11:03 am

    Contrary to what one might imagine, Nahuel’s suggestion of using $. is actually doable in this case.

    This is because one can read from strings just like files using Perl:

    use strict;
    use warnings;
    
    my $str = <<EOS;
    spam
    spam
    spam
    match
    spam
    match
    EOS
    
    open my $handle, '<', \$str or die $!;
    
    while ( <$handle> ) {
    
        print $., "\n" if /match/;
    }
    

    OUTPUT

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

Sidebar

Related Questions

I was reading Code Complete 2 and it mentions this: Many version-control tools wil
I'm reading an application configuration file form the code pasted below. My question is
I am reading Code Complete. In that book, Steve McConnell warns that Developer tests
I began reading the book Code Complete 2nd edition, but stopped reading when I
I'm reading a big file using fread. When I interrupt the program during it
I need to match a string something like $filecontents = test-app-ref-Man_pub_aut_art_1234; My regex is
After reading this article Storing C++ template function definitions in a .CPP file ,
I'm reading in a file which I can't buffer all at once, as its
I have a problem while reading from XML file in action script 3. This
When reading a CSV file from a server using the jQuery 'GET' function I

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.