in reply to Where am I going wrong?
> VILMFWCAxxxx GACTACTACTACTACTACTACTACTACTACTACTACTACTACTACTACTACTACG
Note that using while ($string =~ /.../) doesn't make much sense if you don't change the $string - it either doesn't match, or it matches forever. Maybe you wanted to add a /g at the end? Also, (^>) seems like a typo, did you want [^>] instead?
|
|---|