Quote:

rich, nope...
have to disagree on that one.

example tokenization of:
$foo="bar"
$bar="test"
$=Execute('"The value of $$$$'+$foo+' is "+$$'+$foo+' ?')

should lead to something like:
$1="bar"
$2="test"
$3=Execute('"The value of $$$$'+$1+' is "+$$'+$1+' ?')







Lonk, look again at the example and you will see why tokenising variables names is a problem.

I'll bet you didn't try to execute your sample tokenised code, did you?

The tokenised code returns:
Code:
The value of $bar is


When of course the script should be returning:
Code:
The value of $bar is test