Hello
ArrVar=Apple,Banana,Melon,Ant
I want to get rid of the items starts with “A”
ArrVarResult=Banana,Melon
How can I do it?
Hello
ArrVar=Apple,Banana,Melon,Ant
I want to get rid of the items starts with “A”
ArrVarResult=Banana,Melon
How can I do it?
Please try this
ArrVar.Where(function(x) Not x.StartsWith("A")).ToArray
Hope this helps
Cheers
@Golf_Aquascape
Please try this