Help for this page

Select Code to Download


  1. or download this
    while ($content =~ m/<\?Function\(\".*?\"\)\?>/g)
    { $_ = $content;
    my ($line) = /<\?Function\(\"(.*?)\"\)\?>/;
    my (@Params) = split(/\"\,\"/,$line);
    $line = some_param_stuff(@Params);
    $content =~ s/<\?Function\(\".*?\"\)\?>/$line/; }