Consider I have a list with several items, some have data and others are empty. For example:
List
[0] Value
[1]
[2]
[3] Value
I would like to concatenate a string ONLY in the list items that are not empty, so I can get a result like this:
List
[0] Value StringAdded
[1]
[2]
[3] Value StringAdded
How can I do this? Thanks.