Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

How do I retrieve the position of the first occurrence of a match?

by lima1 (Curate)
on Oct 04, 2007 at 15:59 UTC ( [id://642690]=perlquestion: print w/replies, xml ) Need Help??

lima1 has asked for the wisdom of the Perl Monks concerning the following question: (regular expressions)

I need the position of a regular expression match. For example:
$a = "foo 123 bar"; if ($a =~ m{\d+}xms) { # code that returns 4, the position of 123 }

Originally posted as a Categorized Question.

  • Comment on How do I retrieve the position of the first occurrence of a match?
  • Download Code

Replies are listed 'Best First'.
Re: How do I retrieve the position of the first occurrence of a match?
by lima1 (Curate) on Oct 04, 2007 at 16:01 UTC
    $line =~ m{(\d+)}g; my $pos = pos($line) - length $1;
    When using the g modifier, pos($line) returns the offset where the last m{}g search left off for $line. In other words it points to the position AFTER the last match. So to get the position of the match, one has to substract the length of the match.

    Another possibility is using the match variable $` ($PREMATCH).

    $line =~ m{\d+}; my $pos = length $`;
    This solution can be slightly faster, but match variables slow all other regular expressions without capturing parentheses in the program down (those with captures have this penalty in either case)! See How do I get what is to the left of my match? and perlre. So use with care!
    $line =~ m{\d+}g; my $pos = pos($line) - length $&;
    This third solution can be seen as a compromise between the first two solutions. Using $& will also affect all other regular expressions negativly, but "[...] As of 5.005, $& is not so costly as the other two" (perlre).

    Since Perl 5.6.0, there exists a forth way of retrieving the match position:

    $line =~ m{\d+}; my $pos = $-[0];
    See perlvar @LAST_MATCH_START. This solution does not impose a performance penalty on all regular expression matches and is therefore recommended.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://642690]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-16 08:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found