http://www.perlmonks.org?node_id=1031666


in reply to Selecting HL7 Transactions

Using [^|] instead of . worked, but I do not understand why. It was my impression that .*?\| would match anything to the next vertical bar, which is what [^|]*?\| does.

Replies are listed 'Best First'.
Re^2: Selecting HL7 Transactions
by LanX (Saint) on May 01, 2013 at 22:54 UTC
    > It was my impression that .*?\| would match anything to the next vertical bar, which is what ^*?\| does.

    exactly anything starting from the left including other delimiters, till you have the empty cell between two delimiters you are looking for! :)

    just test it: (with semicolons as delimiters to simplify the regex)

    DB<112> $x=';a;not;b;not;c;;' => ";a;not;b;not;c;;" DB<113> print $x =~ /;(.*?);;/ a;not;b;not;c DB<114> print $x =~ /;([^;]*?);;/ c

    clearer now?

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      Actually, no. Everything I've read on non-greedy matching says .*?\| should match everything up to the next \|.
        You have problems to understand backtracking, which is essentially a branch-and-bound recursion on partial regexes.

        Partial matches of a regex are anchoring the start for recursive attempts to match the rest of the regex.

        Quantifiers - greedy or non-greedy - only work from left to right. They won't force the left side to shrink as long as they do match to the right!

        In the following examples the regex anchors at the semicolon before the quantifier /;(.)/ and tries to match further.

        The starting point for each following match is after the last match.

        But if the whole regex can't match, the backtracking forces the regex to try the next semicolon as an anchor.

        DB<119> $x => "junk ;a;not;b;not;c;; junk ;d;not;e;; junk " DB<120> $x =~ /;(.*);;/g # greedy => 1 match first anch +oring ";" => "a;not;b;not;c;; junk ;d;not;e" DB<121> $x =~ /;(.*?);;/g # non-greedy => 2 matches on first + anchors => ("a;not;b;not;c", "d;not;e") DB<122> $x =~ /;([^;]*?);;/g # non-greedy, trying multiple anch +ors. => ("c", "e")

        BTW: Did I mention that Friedl's book is a good read? =)

        Cheers Rolf

        ( addicted to the Perl Programming Language)

        update

        from perlretut

        The process of trying one alternative, seeing if it matches, and moving on to the next alternative, while going back in the string from where the previous alternative was tried, if it doesn't, is called backtracking. The term backtracking comes from the idea that matching a regexp is like a walk in the woods. Successfully matching a regexp is like arriving at a destination. There are many possible trailheads, one for each string position, and each one is tried in order, left to right. From each trailhead there may be many paths, some of which get you there, and some which are dead ends. When you walk along a trail and hit a dead end, you have to backtrack along the trail to an earlier point to try another trail. If you hit your destination, you stop immediately and forget about trying all the other trails. You are persistent, and only if you have tried all the trails from all the trailheads and not arrived at your destination, do you declare failure. To be concrete, here is a step-by-step analysis of what Perl does when it tries to match the regexp