How to split string on basis of forward slash

Hi ,

I have string like this:
Anmol\Anuj\Hitesh
I want to split it.

Can anyone help me in this.

Thanks!
Anmol

You can use Split string activity or Assign activity with the method Split

Regards,

1 Like

Hi @anmolk171,

try this,
ArrStr = Str.Split("\"C)

ArrStr (Array Of String)

1 Like

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