- or download this
if ($test =~m#(??{substr($test, 0, 8)})#) { }
- or download this
use strict;
use warnings;
...
if ($test =~ m!((??{ substr($test,0,$_) }))!) { };
- or download this
use strict;
...
if ($test =~ m!((??{ print "$_\n";substr($test,0,$_) }))!) {
};
- or download this
fee fi fo free
Argument "fee fi fo free" isn't numeric in substr at (re_eval 1) line
+1.