http://www.perlmonks.org?node_id=682364


in reply to Template::Toolkit - uc() and lc(), other simple formatting mutators - see TT Filters!

[% use String %] [% String.new(myvar).upper() %]

Nice, but why not use a Filter:

[% myvar | upper %]

-- Frank