Kay C Lan wrote:
PS Origininally tried to replace the tokens with the efficient: put "=, +, -, *, /, [, ], {, }, <, >" into tMyTokens REPEAT for each item tMyItem in tMyTokens replace tMyItem with empty in tMyFunctionResult END REPEATand even tried this as the replace line above: replace quote & tMyItem & quote with empty in tMyFunctionResult but neither worked. Bug?
Your list of tokens contains spaces. Did you try your loop without the spaces in there? Maybe it would make the difference. And maybe not - just a guess.
I suppose another way would be to get rid of the commas too, and change the repeat to:
REPEAT for each char tMyItem in tMyTokens Phil Davis _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
