Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    Output:
    -------
    "Transcription factor",promoter,DNA,"Transcription factor",promoter,DN
    +A.
    
  2. or download this
    $str =~ s/((?:(?!\").)*)(\"[^\"]+\")((?:(?!\").)*)/
    my $fi = $1;my $se = $2; my $th = $3;
    $fi =~ s| |\,|g;$th =~ s| |\,|g;
    "$fi$se$th"/egs;