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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:13:59+00:00 2026-06-14T17:13:59+00:00

This is driving me nuts! I read a txt file into a string called

  • 0

This is driving me nuts!

  1. I read a txt file into a string called $filestring.

    sysopen(handle, $filepath, O_RDONLY) or die "WHAT?";
    local $/ = undef;
    my $filestring = <handle>;
    
  2. I made a pattern variable called $regex which is generated dynamically, but takes on the format:

    (a)|(b)|(c)
    
  3. I search the text for patterns separated by a space

    while($filestring =~ m/($regex)\s($regex)/g){
       print "Match: $1 $2\n";
       #...more stuff
    }
    

Most of the matches are valid, but for some reason I get a match like the following every once and a while:

Match: and 

whereas a normal match should have two outputs like the following:

Match: , and

Does anyone know what might be causing this?

EDIT: it appears that the NULL character is being matched in the pattern.

  • 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-14T17:14:00+00:00Added an answer on June 14, 2026 at 5:14 pm

    Each of the alternatives in your regexp is a separate capture group. The whole regexp looks like:

    ((a)|(b)|(c))\s((a)|(b)|(c))
    12   3   4     56   7   8
    

    I’ve notated it with the capture group number for each piece of the regexp.

    So if $filestring is b a, $1 will be b, $2 will be the empty strying because nothing matched (a).

    To avoid this, you should use non-capturing groups for the alternatives:

    ((?:a)|(?:b)|(?:c))\s((?:a)|(?:b)|(?:c))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is driving me nuts. I think it is because of some connection string
This is driving me nuts... What am I doing wrong here? ArrayList<String> toAdd =
This is driving me nuts... I have an input string like so: String input
OK, well this is driving me nuts, lol. I have a Base64 string and
OK, this is driving me nuts. I am trying to read from the Crunchbase
This is driving me nuts. I can't seem to get the data template within
This is driving me nuts. I believe I asked this exact same question, but
This is driving me nuts. I've looked at all the relevant MSDN tutorials but
This is driving me nuts. I'm checking 3 conditions in my sql query. If
Alright, this is driving me nuts because my regex is working on Rubular, but

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.