10-01-2007 10:39 AM
10-01-2007 02:11 PM
10-01-2007 04:32 PM
10-02-2007 12:47 PM
Rafi,
I am not sure that I understand your question, but I will try to answer it as best I can.
normally if you had a string variable such as 'Locals.String' and you wanted it to contain the value 'ABC' you would write the following expression:
Locals.String = "ABC"
If you had another variable (say a numeric) called 'Locals.integerA' and you wanted a string representation of the numeric content you would write:
Locals.String = Str(Locals.integerA)
The Str() function would convert the numeric value to string representation.
If you were looking for something else, please respond/clarify and I will try to address your concern.
-Sean
10-03-2007 01:25 AM
Hi,
If you have a string which contains some expression
eg Locals.MyString ="Str(Locals.IntergerA)" and the contents of Locals.IntergerA = 5.
If you use Evaluate(Locals.MyString) in a step, say the datasource of a Numeric Limit Test step, then this will return the value of 5.
Hope this helps
Regards
Ray