Some Perl Special Variables Some Regular Expression Special Variables 26 of 28 : [PREV] [NEXT]

Comparisons

After a match against some variable $var:

$` is the same as substr($var, 0, $-[0])
$& is the same as substr($var, $-[0], $+[0] - $-[0])
$' is the same as substr($var, $+[0])
$1 is the same as substr($var, $-[1], $+[1] - $-[1])
$2 is the same as substr($var, $-[2], $+[2] - $-[2])
$3 is the same as substr $var, $-[3], $+[3] - $-[3])

© 2004 Barbie barbie@missbarbell.co.uk Home http://birmingham.pm.org/