Is there anyway of removing case sensitivity from a template in the above module?
ex: $template = q(Path : <% Tst %>);
if I match the text "Path : < xxxx >"
xxxx is returned from Tst.
if I match the text "path : < xxxx >"
nothing is returned Tst but it is defined.
I can do it using subsititution of course but is there a shorter way.
ex: $template = q(Path : <% Tst %>);
if I match the text "Path : < xxxx >"
xxxx is returned from Tst.
if I match the text "path : < xxxx >"
nothing is returned Tst but it is defined.
I can do it using subsititution of course but is there a shorter way.