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


in reply to Parse template into data structure

I don't know much about Template::Toolkit and its innards, so I can't tell you if there is a (un)documented way to get at the information you want.

But a simple template basically comes down to some text ... [% variable_name %]... some more text. If this is the case with your templates you can easily parse them directly with something like the following:

local $/; my $text = <DATA>; while ($text =~ /\[%(.*?)%\]/g) { print "$1\n"; } __DATA__ some text ... [% variable_name %] ... some more text [% variable_name2 %] [% variable_name3 %] ... some more text some text ... [% variable_name4 %]

-- Hofmator

Code written by Hofmator and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.