Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to perl and having a problem matching a particular portion of a string.

What I'm trying to match is in bold:

[1339300800] CURRENT HOST STATE: Something;

I was successfully able to match the String between the brackets, at least!

($line=~/\[(\d*)\]*/)

I'm trying something like this for the bolded portion:

($line=~/STATE:\s(\S+);/)

Could anyone give some advice?

share|improve this question
Works for me. What's the actual problem? – daxim Jun 15 '12 at 20:39
1  
The answers you are getting are from people who have guessed what the problem is. Your own solution will result in a regex match with $1 containing Something. What is going wrong for you? – Borodin Jun 15 '12 at 20:43
$1 doesn't print 'Something' – jackie Jun 15 '12 at 20:46

3 Answers

up vote 2 down vote accepted

Your regex

STATE:\s([^;]*);

Does work for me. Remember that it is matched in group 1

if ($subject =~ m/STATE:\s(\S+);/) {
    $result = $1;
} else {
    $result = "";
}

Also, the first regex can be made a bit less verbose

\[(\d*)]
share|improve this answer
it won't work though if "something" includes a space. – Cfreak Jun 15 '12 at 20:40
Right, then your solution where you consider ; as the delimeter is a good. – buckley Jun 15 '12 at 20:42

If the statement always ends with a ;, you can write:

$line =~ /:\s([^;]+)/
share|improve this answer
This is what actually worked, not sure why everyone was saying that my code was fine but I still couldnt get it to work, strangely. Thanks for this solution, though!! – jackie Jun 15 '12 at 20:47
@JackieAldama Everyone was testing with "something" but once that string had a space "some thing" your regex would break – buckley Jun 15 '12 at 20:54
1  
In the end this has to be a Good Answer, so +1. But /:\s+([^;]+)/ is probably safer. Or even /:\s+([^;]+?)\s*;/. – Borodin Jun 15 '12 at 22:14

You're close:

$line =~ /STATE:\s+([^;]+);/

That will get everything that's not a semicolon. Also it will still match if there's more than one space between STATE and "something"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.