Use a module... My favorite is HTML::Template, but there are plenty.
See http://search.cpan.org/~samtregar/HTML-Template-2.6/Template.pm

<td>First Name:</td><td><TMPL_VAR NAME=fname></td>
<td>Last Name:</td><td><TMPL_VAR NAME=lname></td>

  #!/usr/bin/perl -w
  use HTML::Template;

  # open the html template
  my $template = HTML::Template->new(filename => 'mytemplate.tmpl');

  # fill in some parameters
  $template->param( fname => "Jon" )
  $template->param( lname => "Smith" );

  # send the obligatory Content-Type and print the template output
  print "Content-Type: text/html\n\n", $template->output;

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 07, 2003 5:46 PM
To: [EMAIL PROTECTED]
Subject: Best Token Char For Template

1 - What is the best char to use in a file template?
    Also, please give me a good regex?

I will have a formatted html page with some keys that I want to replace.

For example,

...
<!-- here my token is a ! -->
<td>First Name:</td><td>!fname!</td>
<td>Last Name:</td><td>~!lname!</td>
...

2 - Can I read in the whole page and do a replacement?
I'm thinking it's either a line-by-line or a whole page as below:

#line-by-line replace token
$line ~= s/!fname!/$fname/

#or put the whole template in
$page ~= s/!fname!/$fname/
$page ~= s/!lname!/$lname/

thanks,
-rkl


-----------------------------------------
eMail solutions by 
http://www.swanmail.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to