I have tons of addresses in a text file:
156-20 Riverside Drive W. Apt. 16c
New York, NY 10032
And I want to convert each of them to be in a single line:
156-20 Riverside Drive W. Apt. 16c New York, NY 10032
I have tons of addresses in a text file:
156-20 Riverside Drive W. Apt. 16c
New York, NY 10032
And I want to convert each of them to be in a single line:
156-20 Riverside Drive W. Apt. 16c New York, NY 10032
You can use regular expression replace:
Find:
([0-9]+[^\n]+)\r\n([^\n]+)
Replace with:
\1 \2
Be careful to replace, make a backup before run replace.