Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: can you repeat a character N times using HTML::Template?

by barrd (Canon)
on Nov 01, 2003 at 12:20 UTC ( [id://303800]=note: print w/replies, xml ) Need Help??


in reply to can you repeat a character N times using HTML::Template?

Hiya spditner,
Is there some way to get HTML::Template to repeat a character N times, say  , without resorting to HTML::Template::Expr?
Nope. :)

But... using Zaxo's advice above you could get the script to prepare a HTML::Template param for inclusion into your .tmpl template like so:

# Original code by Zaxo my $repeated = '&nbsp;' x $foo->{'depth'}; my $line = $repeated . $foo->{'name'} . "<br />"; my $template = HTML::Template->new(filename => 'foo.tmpl'); $template->param(html_out => $line);
Then in foo.tmpl you would call the result by using something like:
<TMPL_VAR NAME="html_out">
Not sure if that's the kind of answer you were looking for, but its one way of achieving your desired result.

Replies are listed 'Best First'.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://303800]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 15:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found