in reply to compilation errors
$xtemplate = join("", @xtemplate); @template = $xtemplate =~ /^(.*?)\*{4}filename.ext\*{4}/sg; push (@template, $xtemplate =~ /\*{4}filename.ext\*{4}(.*?)\*{4}title\ +*{4}/sg); push (@template, $xtemplate =~ /\*{4}title\*{4}(.*?)\*{4}headings\*{4} +/sg); push (@template, $xtemplate =~ /\*{4}headings\*{4}(.*?)/sg); for ($i=0; $i <= (@filenames-1); $i++) { open(FILE, ">@filenames[$i]") or die; print FILE QQ($temlate[0] $title[$i] $template[1] $heading[$i] $te +mplate[2] $stuff[$i] $template[3]); close(FILE); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: compilation errors
by tachyon (Chancellor) on Aug 22, 2001 at 03:57 UTC | |
|
Re: Re: compilation errors
by little (Curate) on Aug 22, 2001 at 03:42 UTC |