
Announcements
Hello,
I have a txt file which looks like this:
NAME
ADDRESS
PHONE
I want it to be written as the one below, removing the empty new lines
NAME
ADDRESS
PHONE
I found an old tutorial from the forum here but I do not understand it since I am using the desktop version. Can anyone show me how to do it?
If it’s not too big, you could loop on it.
Split Text by new line ‘this will make it a list
for each item in list
If item is empty
‘Do nothing
Else
Add to list
End if
end for each
now you should have a new list with just the 3 lines