Can I do string manipulation within assign activity with c#?

HI,

Can you try either of the following?

arr = str.Split("/".ToCharArray())

OR

arr = str.Split(new char[] {'/'})

Regards,