Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a rather large text file that has a bunch of missing newlines, meaning that it's a mess. I need to break it up into appropriate lines.

The text looks something like this now:

12345 This is a chunk 23456 This is another chunk 34567 This is yet another chunk 45678 This is yet more chunk 56789 Yet another piece of text

I need a regex that will insert a newline (CR/LF pair) before each group of five digits, resulting in something like this:

12345 This is a chunk 
23456 This is another chunk 
34567 This is yet another chunk 
45678 This is yet more chunk 
56789 Yet another piece of text

It can insert one before the first group of digits or not; that I can deal with.

Any ideas? Thanks.

share|improve this question

2 Answers

up vote 4 down vote accepted

Very simple (but not as "flashy" as possible, since I'm too lazy to use lookaheads):

s/(\d{5})/\r\n\1/gs
share|improve this answer
You probably want \r\n since the OP wants CR/LF – cletus Feb 11 '09 at 15:07
@cletus: It might depend on the programming language but Perl and Python replace \n by \r\n on Windows. – J.F. Sebastian Feb 11 '09 at 15:17
Noted, and modified as requested. – user54650 Feb 11 '09 at 15:29
You guys are awesome (and quick). Thanks! – Ken White Feb 11 '09 at 15:43
s/(?<=\D)(\d{5})(?=\D|$)/\n\1/g

On "\n" vs. "\r\n"

It might depend on the programming language at hand but Perl and Python replace \n by \r\n on Windows therefore it is a mistake in this case to replace \n by \r\n in the above regex.

share|improve this answer
Thanks, J.F. Your solution works also (with the correction to \r\n mentioned in the comments to cmartin above). – Ken White Feb 11 '09 at 15:56
It totally depends on the regex engine you're using. In Perl/Python you're absolutely right. I was doing some 1-off cleanup of some files to be imported, and was using RegExBuddy; it's flavor of regex needed \r\n. Thanks again. – Ken White Feb 11 '09 at 18:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.