LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 09-06-2013, 04:05 PM   #1
EnderX
Member
 
Registered: Nov 2006
Posts: 66

Rep: Reputation: 15
Confusing issue with Perl regEx - Regex check seems to require variable being set


I recognize my thread title might not be quite understandable, and I apologize. The issue is that I have a mailing script I'm trying to work with, and it's throwing some wonky behavior when I try to determine (via regex) part of the title of the files I'm attempting to send.

I'm trying to crib this off of a program I inherited from my predecessor. The code is opening a directory, looking at the files inside it, and attempting to match them to a pattern in order to continue processing the file. The original code was looking for a specific phrase to be in the file name, then looking for it to end in a numeric value followed by '.txt'. Both of these appear, as far as I can tell, to be regex setups working against $_.

I was requested to make a change to this program, adding the word 'Urgent' to the subject line of the sent email if said word appeared in the name of the file to be sent. If I use the regex structure the same way my predecessor did (as the content of an if check), I was always getting the 'else' branch regardless of what file it looks at.

In desperation, I tried to set a variable equal to the same regex, so I could write to the stdout what the results were and at least see what it thought it was doing. The variable appears to be getting set to null, but as long as that line is active in the code, the regex appears to work on the if branch now.

Because it seems to work, I can probably go ahead with my work, but I'm confused and a bit alarmed about this behavior. I don't know why it's doing this, which means that I don't know what else it might be breaking behind the scenes, nor how to fix it if it does break.

Would someone please be kind enough to share some suggestions as to what the hey is happening here, and where I might be able to go to look up more information about it?

This is running on a SuSE 11 machine.

The code in question I can trim down to the sample in the block below and still get the same behavior. The line in red is the one whose presence or absence makes the difference in how it acts.

Code:
#!/usr/bin/perl

use strict;
use warnings;
use diagnostics;
use Net::SMTP;
use MIME::Lite;

my $count;
my @strucs;
my $p1;
my $p2;
my $filenm;

my $x;
my $datadir = "/srv/www/htdocs/Survey_forms/";

my $realFile;

my $ker;

opendir DH, "$datadir" or die " could not read listing: $!";
while ($_ = readdir(DH))
{
        if (m/Survey_Results_/g)
        {

                $p1=pos $_;
                $count++;
                print "\n$count" . ') ';
                print $_, " " x (30-length($_));
                push @strucs, $_;
                print "\n";
                if (m/[0-9].txt/g)
                {
                        $realFile = $_;
                        print "Real File = $realFile\n";
                        print "Parse File = $_\n";
                        $ker = m/Urgent/gi;
                        print "Parse File = $_\n";
                        if (m/Urgent/gi)
                        {
                                $filenm = substr($_, 21, 20);
                                print "Foo!\n";
                        }
                        else
                        {
                                $filenm = $_;
                                print "Bar!\n";
                        }
                        print "$filenm\n";
                }
        }
}
 
Old 09-07-2013, 04:36 AM   #2
j-ray
Senior Member
 
Registered: Jan 2002
Location: germany
Distribution: ubuntu, mint, suse
Posts: 1,591

Rep: Reputation: 145Reputation: 145
while ($_ = readdir(DH))

if you use $filename instead of $_ the whole thing becomes easier as $_ is used by perl frequently and so may contain a different value than expected.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] setting new variable to regex of another without changing the other variable in perl Eppo Programming 1 12-22-2011 02:35 PM
[SOLVED] differences between shell regex and php regex and perl regex and javascript and mysql golden_boy615 Linux - General 2 04-19-2011 01:10 AM
Perl to find regex and print following 5 lines after regex casperdaghost Linux - Newbie 3 08-29-2010 08:08 PM
[SOLVED] How to include a string variable in a regex (Perl) MTK358 Programming 5 01-09-2010 11:31 AM
perl pass regex check as an argument lord-fu Programming 2 08-29-2007 02:55 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:03 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration