- or download this
package Foo;
...
$condition ? $self->re : $self->as_string;
}
1;
- or download this
use Foo;
...
my $match = ($_ =~ /$r/) ? 1 : 0;
print "$_ match=$match\n";
}
- or download this
r = /(?-xism:^[aeiou]+\d+$)/
super = /(?-xism:[A-Z]+[aeiou]+\d+)/
- or download this
r = /(?-xism:^[aeiou]+\d+$)/
super = /(?-xism:[A-Z]+(?-xism:^[aeiou]+\d+$))/