- or download this
$re0 = qr/
(??{ $re1 })*
/x;
- or download this
$re0 = qr/
(??{ $re1 }) (??{ $re0 })
|
# Nothing
/x;
- or download this
$re0 = qr/
(??{ $re1 })+
/x;
- or download this
$re0 = qr/
(??{ $re1 }) (??{ $re0_ })
...
|
# Nothing
/x;
- or download this
$re0 = qr/
(??{ $re1 })?
/x;
- or download this
$re0 = qr/
(??{ $re1 })
|
# Nothing
/x;