Help for this page

Select Code to Download


  1. or download this
    while ($allfile =~ /^(\d+) /mg)
        {
    ...
    for (@objects) { $allfile =~ s/^ +$_\n//m; }
    
    print $allfile
    
  2. or download this
    for (@objects) { $allfile =~ s/^ *(foo)? +$_\n//mn; }