in reply to Re: Regular expression for a comma separated string
in thread Regular expression for a comma separated string
It doesn't have to be. I didn't mention earlier, I did try to break it down but with no success.
/^(?=[ACGT]{1,4},[ACGT]{1,4}$).*$/ && /^(?!.*(.).*\1.*,).*$/ && /^(?!,.*(.).*\1).*$/
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Regular expression for a comma separated string
by Anonymous Monk on Nov 24, 2014 at 00:43 UTC |
In Section
Seekers of Perl Wisdom