473,383 Members | 1,725 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Regex problem, match if line contains <a>, unless it also contains <b>

I'm having problems getting a regex to work.
Basically, given two search parameters ($search1 and $search2), it
should allow me to filter a log file such that lines with the $search1
string in are printed, unless the $search2 string is also in that line
somewhere (either before or after $search1).

I'm creating my regex like this:
$compiled_regex = qr/^(?!.*$search2)$search1(?!.*$search2)/;

I then use it:

while( <> ) {
next if( $_ !~ /$compiled_regex/ );
print $_ . "\n";
}

With the following test data:

2004-02-18 04:06:50 1AtIua-0001Hh-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]
2004-02-19 04:02:02 1AtfNx-0008DC-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]
2004-02-19 04:07:26 1AtfO5-0008Gs-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]

If $search1 is set to 'sysadmin', and search2 is set to '0008Gs',
none of the lines in the data are displayed, whereas I would expect the
first two to be displayed.

With this test data:
foo
foo foo
foo foo foo
foo bar
bar foo
foo bar foo
foo bar bar
bar foo bar
bar foo foo
bar
bar bar
bar bar bar

$search1 set to 'foo', and $search2 set to 'bar', I get the
expected results (foo, foo foo and foo foo foo displayed).

I just can't figure out why nothing is being displayed in my first test case.
My gut instinct is that it's got something to do with the special'ish
characters in the data ('-', '>' etc.), but I'm not sure.

Any thoughts?

J
Jul 19 '05 #1
5 2227
shouldn't it be ".*$search2?" rather than "?.*$search2" ?
I'm creating my regex like this:
$compiled_regex = qr/^(?!.*$search2)$search1(?!.*$search2)/;


--
.~. Might, Courage, Vision. In Linux We Trust.
/ v \ http://www.linux-sxs.org
/( _ )\ Linux 2.4.22-xfs
^ ^ 4:14pm up 5:47 1 user 1.01 1.00
Jul 19 '05 #2
OK, I was being stupid, and really not thinking about what my regex
was actually doing.
I've now solved the problem - for those of you who are interested,
this appears to work:

$compiled_regex = qr/^(?!.*$search2).*$search1/;

J
ja*@hungover.org (James Dyer) wrote in message news:<39*************************@posting.google.c om>...
I'm having problems getting a regex to work.
Basically, given two search parameters ($search1 and $search2), it
should allow me to filter a log file such that lines with the $search1
string in are printed, unless the $search2 string is also in that line
somewhere (either before or after $search1).

I'm creating my regex like this:
$compiled_regex = qr/^(?!.*$search2)$search1(?!.*$search2)/;

I then use it:

while( <> ) {
next if( $_ !~ /$compiled_regex/ );
print $_ . "\n";
}

With the following test data:

2004-02-18 04:06:50 1AtIua-0001Hh-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]
2004-02-19 04:02:02 1AtfNx-0008DC-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]
2004-02-19 04:07:26 1AtfO5-0008Gs-00 -> sy******@foobar.com R=lookuphost T=remot
e_smtp H=mxhost-1.foo.bar [0.0.0.0]

If $search1 is set to 'sysadmin', and search2 is set to '0008Gs',
none of the lines in the data are displayed, whereas I would expect the
first two to be displayed.

With this test data:
foo
foo foo
foo foo foo
foo bar
bar foo
foo bar foo
foo bar bar
bar foo bar
bar foo foo
bar
bar bar
bar bar bar

$search1 set to 'foo', and $search2 set to 'bar', I get the
expected results (foo, foo foo and foo foo foo displayed).

I just can't figure out why nothing is being displayed in my first test case.
My gut instinct is that it's got something to do with the special'ish
characters in the data ('-', '>' etc.), but I'm not sure.

Any thoughts?

J

Jul 19 '05 #3
> I've now solved the problem - for those of you who are interested,
this appears to work:
$compiled_regex = qr/^(?!.*$search2).*$search1/;


what's the meaning of "?!" in the regex?

--
.~. Might, Courage, Vision. In Linux We Trust.
/ v \ http://www.linux-sxs.org
/( _ )\ Linux 2.4.22-xfs
^ ^ 7:42pm up 9:15 1 user 0.97 0.93
Jul 19 '05 #4
>> I've now solved the problem - for those of you who are interested,
this appears to work:
$compiled_regex = qr/^(?!.*$search2).*$search1/;


what's the meaning of "?!" in the regex?


I figured it out. need to force the context of the $! variable.

print int($!) . $!;

int($i) prints the error number, 2nd $! prints the message.
--
.~. Might, Courage, Vision. In Linux We Trust.
/ v \ http://www.linux-sxs.org
/( _ )\ Linux 2.4.22-xfs
^ ^ 7:54pm up 9:27 1 user 1.00 0.94
Jul 19 '05 #5
ja*@hungover.org (James Dyer) wrote in message news:<39*************************@posting.google.c om>...
$compiled_regex = qr/^(?!.*$search2)$search1(?!.*$search2)/;
Ignoring the possiblity that $search1 maches a newline, the second
(?!.*$search2) is redundant. It can never fail to match since the re
engine wouldn't get as that far if there was a match for $search2
anywhere in the data.

$compiled_regex = qr/^(?!.*$search2)$search1/s;
2004-02-18 04:06:50 1AtIua-0001Hh-00 -> sy******@foobar.com R=lookuphost T=remot If $search1 is set to 'sysadmin', and search2 is set to '0008Gs',
You are only looking for $search1 at the start of the string. You
probably wanted.

$compiled_regex = qr/^(?!.*$search2).*$search1/s;

Note - using a single regex for this is probably not a good idea
unless you are forced into doing so by the fact that you are calling
an existing function that you can't modify and that takes a single
regex as an argument.

If you are not compelled to use a single regex it is clearer, and
probably faster to use two.

/$search1/ && !/$search2/
Any thoughts?


Well since you ask...

This topic has been frequently discussed in the Perl newsgroups that
exist on Usenet. I think you should have done a search before you
posted. Having decided you wanted to post I think you should have
done so to a newsgroup that still exists. This one doesn't (see FAQ)
so very few people will see what you post here.
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Ray Tayek | last post by:
hi, trying to use an xslt to make an xslt. trying something like: <?xml version="1.0" encoding="UTF-8"?> <?xmlspysamplexml H:\java\projects\spy1\spy\inputDocumentMap.xml?> <xsl:stylesheet...
5
by: MyndPhlyp | last post by:
I've been busting my head trying to figure this out for quite some time. With IE6 and NS7, no problems. I can simply code the HTML <img height="100%"> and be done with it. But NS4 and NS6 (and...
11
by: Scott Brady Drummonds | last post by:
Hi, everyone, I've checked a couple of on-line resources and am unable to determine how reinterpret_cast<> is different from static_cast<>. They both seem to perform a compile-time casting of...
8
by: Greenhorn | last post by:
Hi, Those relational operators have operands of all numerical type int,char,float etc. They also are working for character arrays. Whats the logic behind their working. Is the length of the...
3
by: z. f. | last post by:
Hi, i'm using code in my aspx page. i have data binding where i use <%# Container.DataItem("DateStart") %> i also use code that makes a loop inside a regular <% %> block how can i pass...
8
by: active | last post by:
I use quickwatch on (astrThisOne <> "") and it reports: False as it should because astrThisOne reports: "" Yet If (astrThisOne <> "") Then executes the Then clause
1
by: Robert Dodier | last post by:
Hello, Sorry for asking what must be a FAQ, but I wasn't able to find the answer. I have an XML document fragment which I want to store as a text string. I want a function to convert any XML...
4
by: Anastasios Hatzis | last post by:
I'm looking for a pattern where different client implementations can use the same commands of some fictive tool ("foo") by accessing some kind of API. Actually I have the need for such pattern for...
3
by: ajay2552 | last post by:
Hi, I have a query. All html tags start with < and end with >. Suppose i want to display either '<' or '>' or say some text like '<Company>' in html how do i do it? One method is to use &lt,...
3
by: newbie | last post by:
Same thing g++ complains when using hash_map<>, but is happy with map<--I understand hahs_map is not standardized, but since the compiler didn't complain something like 'hash_map<not defined', I...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.