I am having issue formatting variables in smarty. I was wondering what is the best way to do it. Basically i have a string \"ABC | DEFGH\" i want smarty to get the substri
Those functions do not exist in smarty. You'll have to split it in PHP before sending it to the template. Or you could write your own split function smarty plugin. Or use {php} tags in the template, but I'd avoid that solution as it is against the 'spirit' and purpose of using smarty, separation of presentation and logic, etc etc.