I'm looking to convert the files from for example a c or java file with inline 
perl to a plain c or java file, the same way i assume Apache::ASP must 
eventually convert the html files with inline perl into plain html files.


so a file containing:

<% for($i=0; $i<5; ++$i) %>

void testFunc<%=$i%>();

<% } %>


would be converted to a file with

void testFunc0();

void testFunc1();

void testFunc2();

void testFunc3();

void testFunc4();

________________________________
From: Tsirkin Evgeny <tsir...@gmail.com>
Sent: January 7, 2017 10:38 AM
To: Corey Epp
Cc: asp@perl.apache.org
Subject: Re: ASP in non-html files

Could you please explain what does that mean, "parse the perl" without apache 
server?

On Fri, Jan 6, 2017 at 9:39 PM, Corey Epp 
<corey_...@msn.com<mailto:corey_...@msn.com>> wrote:

Hi,

A project I'm working on requires me to deal with non-html files that have 
in-line perl in the same format as ASP uses. I'm trying to find a simple way to 
parse the perl in the files like Apache::ASP does with html files without 
having to use an apache server.


Apologies if this is the wrong place for this question.

Reply via email to