BLOCK:ConstantList
value = ["one", "two", "three"]
=> VAR @list
ENDBLOCK
for (int i = 0; i < list.Count; i++)
{
BLOCK:ToUppercase
input = @list[i]
=> VAR @upper
ENDBLOCK
}
LOG @upper "Capture"
i need to use this process but i have a problem
outside this bracket i need to use @upper
There are long operations that I do not want to be repeated in this for loop, after I write them all in the list, I must make corrections outside the parentheses, otherwise it will take unnecessary operations and unnecessary time.
but when i want to use it after parenthesis i get an error like @upper not found.
is there a way or do i have to do everything in this loop thanks
is there a way to get all BLOCK:HttpRequest operations executed inside the for loop with a single parse?
now normally it can only get the values of the last BLOCK:HttpRequest executed.
I need to parse from all the BLOCK:HttpRequest operations that I see on the log page. It would be great if I could do it with a parse