Not sure where to even start, but here goes:
Input data:
This is a complete sentence.
This is
also a
complete sentence.
This is a complete sentence.
this is also a
complete sentence.
Output data:
This is a complete sentence.
This is also a complete sentence.
This is a complete sentence.
This is also a complete sentence.
I have newline characters breaking up my data that I need to remove; however, I can only identify them by looking at the begining of the line, so I need to remove the preceding newline character under those conditions.
I hope this makes sense?
Input data:
This is a complete sentence.
This is
also a
complete sentence.
This is a complete sentence.
this is also a
complete sentence.
Output data:
This is a complete sentence.
This is also a complete sentence.
This is a complete sentence.
This is also a complete sentence.
I have newline characters breaking up my data that I need to remove; however, I can only identify them by looking at the begining of the line, so I need to remove the preceding newline character under those conditions.
I hope this makes sense?