PPWIZARD is a free preprocessor for HTML, REXX, Visual Basic or any text files.
[Bottom][Contents][Search][Prev]: <??RexxVariable>[Next]: <?/>

<?=RexxExpression>

A "variable" of this type allows you to evaluate a REXX expression, without using a separate #evaluate command. Each time you use it, a relatively slow REXX "interpret" command is required, so for performance reasons it is recommended that you:

The REXX expression has the limitation that it must not contain the ">" character!

This is a Standard Definition which always exists (you don't need to #define it). Note that you can create your own variations or completely new ones (see the examples).

Example

    ;--- 5 '*' chars ----
    <?=copies('*',2)||copies('*',3)>
    
    ;--- Next line is invalid (compile will fail) ---
    <?=copies('*',2)||copies('>',3)>
    


[Top][Contents][Search][Prev]: <??RexxVariable>[Next]: <?/>

PPWIZARD Manual
My whole website and this manual itself was developed using PPWIZARD (free preprocessor written by Dennis Bareis)
Friday June 01 2001 at 5:58pm