$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.

In reply to Re: How do I retrieve the position of the first occurrence of a match? by lima1
in thread How do I retrieve the position of the first occurrence of a match? by lima1

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.