in reply to How to split an array identified by numbers to get the correct sequence of elements

#!/usr/bin/perl my $k = "CCATGNNNAACCNNATGNNTAGCC”; print substr($k, 2, 9), "\n"; print substr($k, 15, 8), "\n";
  • Comment on Re: How to split an array identified by numbers to get the correct sequence of elements
  • Download Code