Help for this page

Select Code to Download


  1. or download this
    $seq =~ s/\s//g;
    
  2. or download this
    $seq =~ s/\s+//g;
    
  3. or download this
    my $A = () = $seq =~ /A/ig;
    
  4. or download this
    my $A = $seq =~ tr/aA//;
    
  5. or download this
    my @matches = $seq =~ /[AG]TG.*?T[AG][AG]/ig;
    print "Here are the matched parts of the string:\n";
    print "  '$_'\n" for @matches;
    my $GENE = @matches;