Help for this page

Select Code to Download


  1. or download this
    my $sequence_to_parse =">test\nATG\nGGG";
    print $sequence_to_parse  =~ /([^\r\n]+)$/s;
    __END__
    GGG
    
  2. or download this
    use YAPE::Regex::Explain;
    print YAPE::Regex::Explain->new(
    qr/([^\r\n]+)$/s
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------