I have a text-file container a number of lines, which I need to turn into a csv. What is the easiest way to replace all the line-breaks with ", ". I have TextWrangler and read that it would do so by using grep and regular expressions, but have very little experience using regular expressions and don't know how grep works. Anyone who can help me get started?
How to replace line-breaks with commas using grep in TextWrangler?
Asked Answered
- Choose Find from the Search menu. TextWrangler opens the Find window.
- Select the "Grep" checkbox
- Type the string you are looking for ("\n" or "\r\n" or "\r") in the Find textfield.
- Type the replace string (", ") in the Replace text field.
- Click "Replace All"
See chapters 7 and 8 of the TextWrangler User Manual if you have problems.
I was actually trying to do exactly that but now I realize that I should be using carriage return \r rather than unix line breaks \n. Thanks for the help –
Reconnaissance
Precisely. In OSX Mavericks at least,
\n
was returning a blank replace result, had to change it to \r
.. –
Simoneaux Alternatively, and with only two pieces of software (Excel and Notepad++, which is also free and AWESOME).
- Take your list (I assume it's one per line, in a column, for example):
- Remove any empty cells
- Copy the addresses, and Paste Special>Transpose (this put them into cells going from A-->).
- Copy list into notepad++ - you'll note that it shoves them in as one long list, losing that irritating table structure.
- Find the shortest clear space (but use the entire space) between two email addresses, and replace all with a ","
- Then find all remaining spaces (i go with one space at a time), and replace with nothing (i.e. the 'replace with' box is empty).
Et voila!
and you know you can also save stuff as comma-separated values, right?
is Notepad++ really available in Mac? –
Understrapper
Notepad++ is not available for Mac at time of writing and textwrangler is arguably the closest substitute, though it doesn't seem to have as many features. At any rate, if you're going to grep, probably not that useful to be inside the editors, command-line is more powerful, you can grep inside several documents/directories at once, etc.. –
Choreographer
The TextWrangler method should also work in Notepad++ or any other text editor that does regular expressions – no need for Excel. Generally, though, I find TextWrangler’s regular expressions more reliable than Notepad++’s. –
Kira
actually is possible to do it in notepad++ alone , without excel (provided you are on Windows) –
Miner
© 2022 - 2024 — McMap. All rights reserved.