
Jim A - 2006-12-15 07:52:26
I have a bunch of templates that use @@ to delimit a text substitution variable (i.e., token) and would like to use PclTemplate to replace the existing template processing engine.
For example:
text ... @@LAST_NAME@@, @@FIRST_NAME@@ ... text
Can PclTemplate be used with this kind of delimiter? Or, will I have to edit the templates to something like:
text ... @@(LAST_NAME)@@, @@(FIRST_NAME)@@ ... text
Thanks!