in reply to Regexp to extract groups of numbers

A real easy regex.
$_ = "000000000000022102840002210284"; my @nums = (/\d{10}/g);

Replies are listed 'Best First'.
Re^2: Regexp to extract groups of numbers
by Anonymous Monk on Feb 07, 2005 at 10:00 UTC
    I got to ask, why the parenthesis?