Expression problem
- From: "K.J. 44" <Holleran.Kevin@xxxxxxxxx>
- Date: 27 Nov 2006 13:40:31 -0800
I have the two following regular expressions. I am not very good at
writing these yet. I am parsing some logs looking for some key words,
then taking the text after them.
if ($details[$i] =~ /\bworkstation\b\bname:\b\s\b[0-9A-Za-z_\-]+\b/i) {
($nothing, $hostName[$i]) = split(/:/, $&);
}
if ($details[$i] =~ /\buser\b\bname:\b\w+/i) {
print("The username is: $&");
($nothing, $username[$i]) = split(/:/, $&);
}
The $details array is read in from a text file and this works fine.
What I want to do is search the $details text for certain key words,
then take the text right after. The first if statement
Find the word Workstation followed by a space followed by name:
followed by a space followed by a string of characters including word
characters and hyphens. if the match is found, take only the text
after the : as the workstation name.
The second part is along the same lines for username.
Find the word user followed a space followed by the word name: followed
by a space followed by a string of word characters. Split at the : as
the username found.
These do not seem to be finding matches when I can see them in the log
file. Where am I messing up?
Thanks.
.
- Follow-Ups:
- PS: Expression problem
- From: Mr P
- Re: Expression problem
- From: xhoster
- Re: Expression problem
- From: Christian Winter
- Re: Expression problem
- From: Ric
- PS: Expression problem
- Prev by Date: Re: How to find utf8.enc?
- Next by Date: Re: Expression problem
- Previous by thread: Windows CE, Windows Mobile
- Next by thread: Re: Expression problem
- Index(es):
Relevant Pages
|
|