Hi, can anyone help me into this?

I have this string, i want only middle value i.e “Aero Space” .How can i achieve this,Please help.

0T3C1MA_China India 7
Aero Space
0GT5V1MA

Hi @Anjali_Rani

Create one String Array variable then use assign activity,
String_Array_Variable=Your_String_Variable.Split(Environment.NewLine.ToArray,StringSplitOptions.RemoveEmptyEntries)

String_Array_Variable(1) will return required value.

1 Like

hi,how i write this,i have no idea.Please explain.

Hi @Anjali_Rani ,

You need to use the expression in an assign within a For Each, as you are currently trying to split an array of strings. To split the individual items you need a for each to loop through each of strings you have.