UiPath Split String activity error

Hello, i was using enterprise old version and the studio told me to convert to Windows version, but after that, microsoft activies just got corrupted as the new version does not support them. Problem is, i was using Split String activity on my workflow, and cant find a activity to replace it, as I tried with Assign but didnt have success on the conversion.

Im trying on assign activity: linha = linha.Split({“;”}, StringSplitOptions.None) but it gives me a error

linha is a String Array () variable.

The original workflow with the Split String activity(not available anymore) was working this way.

@SamuelXK

So wwhat you wrote is correct…linha is the string which is getting split…but on left side you have to give one more variable which is of type array of string…go to variable panel and create it…

Items is what you get out of split activity…in similar fashion you get a string array here

Hope this helps

Cheers