in reply to Re: Robocopy log parsing
in thread Robocopy log parsing

What am I mising?
You are missing my before $line after foreach. You should also declare $dir, but I do not see where this variable gets its value.

Replies are listed 'Best First'.
Re^3: Robocopy log parsing
by bit5nip3r (Initiate) on May 28, 2012 at 15:45 UTC

    I wanted $dir to get its value from extracting text from the New Dir entry. For each new Dir there will be a x:\....\ string of text to denote a folder path, which for each line where there is New Dir match it assigns the value found to $dir, then for each corresponding line the print join prints the $dir value. Well that was the idea in theory. If I remove the $dir from the print join statement, it works. Ok so $line fixed. but still having probs with $dir. Does the $dir =~ not declare it as an assignment?

      No, assignment operator is =, =~ is a pattern match operator. See perlop.

      Still does not work. can't extract text from a line based on a regexp. It does not get assigned to $dir. What do I need to do to re-write so that for each New File there is a corresponding folder path?

        Pointer re choroba's answer: perlre, perlretut, etc. As you've written the regex, it's effectively a noop because you haven't assigned a value to $dir.

        Beyond that, it may be that your intent and the regex's behavior don't agree. The \n is the wrong way to tackle the end of a line -- if, in fact, you need to anchor to an EOL... but you haven't offered any information to suggest it's needed at all.

        So, perhaps you want something like this (after assigning a value to $dir):

        $dir =~ m/([a-z:]+).*?/; $dir = $1; print $dir;

        The parens capture to $1 the content matching a-z & colon more than one time... for ex, "C:"