Data type system.string[][]

Sorry for a very obvious question. Can someone tell me which data type in the lookup gives in a UiPath data type of String. I can locate String, but not .

The odd looking boxes are two sets of left and right square brackets!

That is a type of (Array (array (string)). Basically you’ll set a variable with a type array <> then in the type of the array you’ll set another array with the type string.
That will give the data type String .

1 Like

@ChrisC1 When Selecting the Datatype of a Variable, Click on the Array[T], You’ll get to Select Datatype Again, Select Array[T] again, You’ll get to Select Datatype again, This Time Select the String Type. That will give you a Datatype of Two Dimensional String

3 Likes

Here’s a screenshot of the procedure:
array(array(string)

  • The 1st one is the first data type of the variable
  • The 2nd one is the type of array (array(string)) which you’ll set for the 1st one.

Hopefully that helped answer your question.

2 Likes

Thank you! It’s obvious when you know how!

1 Like

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