Hi All
I have an array of strings. I need to delete a string from the array. How to do that ?
Hi All
I have an array of strings. I need to delete a string from the array. How to do that ?
ArrayVariable.Remove(“Your removable value”)
or
ArrayVariable.Remove(Index)
Do we have a need to remove from array ? Instead we can filter the value and proceed
In Assign Activity
Array = strArray.Where(Function(s) s <> “toberemoved”).ToArray
Array[String]
ArrayVariable.Remove(Index) .Remove method does not appear to exist
ArrayVariable.Where(Function(s) s <> “toberemove”).ToArray