> $text = preg_replace("/\\{\\$(\\$:\\w+)\\}/e",
> "PVSE(PageVar(\$pagename, '$1'))");
Or go to PageTextVar() directly rather than getting to it thru PageVar() for
performance...?
$text = preg_replace("/\\{\\$\\$:(\\w+)\\}/e",
"PVSE(PageTextVar(\$pagename, '$1'))");
-Peter