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
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.
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.