|
|
Of course. I'm using my own version for this, because
I normally need to parse several things in one go.
Additionally, it is more efficient this way, cause otherwise
POV would have to go back to the file with Parse_String,
and I'm using less instances of the macro this way.
--
Tim Nikias v2.0
Homepage: http://www.digitaltwilight.de/no_lights
Email: Tim### [at] gmxde
> > #fopen _O "test.tmp" write
> > #write (_O, "#declare ",_Name,"=Var;\n")
> > #fclose _O
> > #include "test.tmp"
>
> > #fopen _O "test.tmp" write
> > #write (_O, "#declare Var=",_Name,";\n")
> > #fclose _O
> > #include "test.tmp"
>
> > #fopen _O "test.tmp" write
> > #write (_O, "#declare ",_Name,"=Var;\n")
> > #fclose _O
> > #include "test.tmp"
>
> Out of curiosity, did you noticed Parse_String macro ?
>
> ABX
Post a reply to this message
|
|