Dear community,
I am trying to generate som code by concatenating strings. The string will be evaluated using Eval( Parse( <string>) ). The outcome of this should contain a quoted string, let me exemplify:
List = {"Item1", "Item2"};
string = Concat( "Select(", List[1], ")" );
This string will read "Select(Item1)" and Parse( string ) will return Select(Item1). What I want is that Parse( string ) should return Select("Item1"), with quotes.
Any help is much appreciated