Extracting Values from System.String[] from Sharepoint List

I am reading a SharePoint list using the “Get List Items” activity in UiPath, and the output is a DataTable. However, one of the column values is returning as System.String[]. I need help extracting the actual string values from this array. How can I do this?

It’s not a string value, it’s an array of string value. Treat it how you would any array.

I have tried but no luck. I have done all my checks from side .

You would do CurrentRow(“Column Name”)(0) to get the first value in the array, for example.

No. the problem here is the value in the Column is “System.string”. but in the Sharepoint list its a System.string type multi choice column

Again, that’s an array so you have to treat it as an array. System.String[] means array(of string)

Sir, I have tried that. it’s not working

Show your code. Post screenshots of what you’re trying to do.