I am working with data files of a single column containing strings, but sometimes the content of one rows carries over to the next one, like so:
...
"This is a str-
-ing"
...
This happens multiple times in each file in a non predictable way: is there a method in Python, preferably using pandas, to attach the content of the second row to the first, eliminating the - separator? I have looked far and wide in SO and elsewhere for similar questions, but no solution seems to really apply to my case. Thanks in advance for any suggestions.