How to get array from config in uipath

Hi everyone,

I want to get two arrays of type string and integer from config file. Config(“numbers”).Tostring throws an error.
How can I do it?

Regards,

image

Hello @nilesay ,

Store Array in a Settings / Asset Sheet as
Numbers = 1,2,3,4,5

in your Workflow use Assign Activity
NumArray | Data Type = String Array

Assign NumArray = Config(“Numbers”).ToString.Split(","c).ToArray

as an alternate you can store the serialized JSON strings within the config and deserialize it like
grafik

For the string array we recommend the split approach as mentioned by Rohith
grafik

1 Like

@nilesay
please folow these steps.
read config.
make to array as you are using already.
->In assign Activity ->Assign StringArray = Config(“StringList”).ToString.Split(",“c).ToArray
→ In assign Activity -->Assign NumArray = Config(“Numbers”).ToInt.Split(”,"c).ToArray

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.