I did that then after iteration only it clicked on payment .It was to be done after second iteration amount
Still the same demand. Please share your xaml with us, so we can help faster.
If you have a string from where you want to remove empty values.
Example - StringVar = “2, ,3,5,6”
Use -
Create a new ListVar - New List(Of String)
ListVar = StringVar.Split({“,”},StringSplitOptions.RemoveEmptyEntries).ToList()
If this does not solve your issue, do next step -
List Var.Where(Function(x) Not(String.IsNullOrEmpty(x) Or String.IsNullOrWhiteSpace(x))).toList()
Finally, you can join the list to get result as string.
String.Join(“,”,ListVar)