I'm currently writing an application in which I have a function as follows:
var a,b,c, algorithm: string
begin
a := some-operations-with-regular-expressions;
b := some-other-operation-with-regular-expressions;
c := just-similar-to-b-but-different;
algorithm := IniFile.ReadString('XML Info','AlgorithmExpression', '');
//algorithm is fetched like 'http://wwww.urlhere' + a + '/' + b + '/' + c
DoDownload (algorithm, true);
end;
Now what I expected was to have a, b & c automatically replaced with the values of the variables with the same name, but it appears that I'm so wrong. Is there any way to get the result of the algorithm variable composed of the strings between '' and the variable values?
Any suggestion (even if it calls for major redesigning) would be much appreciated.
Thanks, sphynx
algorithmis a string containing characters. That's it. Period. – Andreas Rejbrand Dec 7 '11 at 16:24'Hello ' + name + '!'(literally) and expects thatnameshould be replaced by the contents of the string variablenameautomagically at runtime... – Andreas Rejbrand Dec 7 '11 at 16:27'http://wwww.urlhere' + a + '/' + b + '/' + cwithhttp://wwww.urlhere%param1%/%param2%/%param3%. Then do aStringReplaceonalgorithmvariable so that it replaces %param#% with actual variable values. – LightBulb Dec 7 '11 at 16:32