in reply to Re: conditional expression testing
in thread conditional expression testing
use warnings; use strict; my @dic = qw#beriberi hanabbsbbshana#; for (@dic) { my $pat = $_; print "trying to match $pat\n"; print "matched $pat\n" if $_ =~ m#^(hana)(bbs)?(?(1)\2\1|\1)$#; } my @pat = qw#AAAAG AC GC AZG ZC AAAG#; for ( @pat ) { my $pat2 = $_; print "matching $pat2\n"; print "matched $pat2\n" if $_ =~ m#[ATGC]+(?(?<=AA)G|C)$#; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: conditional expression testing
by ikegami (Patriarch) on Jun 01, 2010 at 16:51 UTC |