Help for this page

Select Code to Download


  1. or download this
    $line =~ s/^\*(.*)/!$1/ and print $line and next if $line;
    
  2. or download this
    print("!" . substr($line, 1)) and next if index($line, '*') == 0;