Hello
I am trying to iterate two arrays of strings to import to workflow file.
but I cannot get it right.
Does anyone have good ideas to do this?

Hello
I am trying to iterate two arrays of strings to import to workflow file.
but I cannot get it right.
Does anyone have good ideas to do this?
Hi,
Can you try to modify to like the following?
arrShippingP = {Config("shipPxxx").ToString,Config("shipPzzz").ToString}
Regards,
Thank you for your response.
It worked.
Do I need to add the âfâ to the argument list of the invoke file?
How do I import the string of the array to another file?
I run the robot and it does not import the string of the array.
Hi,
f
seems String or Object type. So if workflow file which is invoked has String[]
argument, need to pass arrFilenames. Or need to modify argument type from String[]
to String
, then pass f
.
Regards,