CARVIEW |
- #pos SCALAR
- #pos
-
Returns the offset of where the last
m//g
search left off for the variable in question ($_
is used when the variable is not specified). This offset is in characters unless the (no-longer-recommended)use bytes
pragma is in effect, in which case the offset is in bytes. Note that 0 is a valid match offset.undef
indicates that the search position is reset (usually due to match failure, but can also be because no match has yet been run on the scalar).pos
directly accesses the location used by the regexp engine to store the offset, so assigning topos
will change that offset, and so will also influence the\G
zero-width assertion in regular expressions. Both of these effects take place for the next match, so you can't affect the position withpos
during the current match, such as in(?{pos() = 5})
ors//pos() = 5/e
.Setting
pos
also resets the matched with zero-length flag, described under "Repeated Patterns Matching a Zero-length Substring" in perlre.Because a failed
m//gc
match doesn't reset the offset, the return frompos
won't change either in this case. See perlre and perlop.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.