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

How do do you say the following in regex:

foreach line
   look at the beginning of the string and convert every group of 3 spaces to a tab
   Stop once a character other than a space is found

This is what i have so far:

/^ +/\t/g

However, this converts every space to 1 tab

Any help would be appreciated.

share|improve this question
1  
Please post the code you have written so far. People generally do not like to just write for code for you. – Mitch Wheat Dec 6 '09 at 2:31

4 Answers

up vote 5 down vote accepted

With Perl:

perl -pe '1 while s/\G {3}/\t/gc' input.txt >output.txt

For example, with the following input

nada
   three spaces
    four spaces
   three   in the middle
      six space

the output (TABs replaced by \t) is

$ perl -pe '1 while s/\G {3}/\t/gc' input | perl -pe 's/\t/\\t/g'
nada
\tthree spaces
\t four spaces
\tthree   in the middle
\t\tsix spaces
share|improve this answer

You probably want /^(?: {3})*/\t/g

edit: fixed

share|improve this answer
This converts 3 spaces to 1 tab - but also 6 or 9 or 12 etc. spaces to only 1 tab. – Tim Pietzcker Dec 6 '09 at 8:32

I know this is an old question but I thought I'd give a full regex answer that works (well it worked for me).

s/\t* {3}/\t/g

I usually use this to convert a whole document in vim do this in vim it looks like this:

:%s/\t* \{3\}/\t/g

Hope it still helps someone.

share|improve this answer

Perl, sed, ruby, ...

s/^   /\t/

That is a caret (^) followed by three spaces.

share|improve this answer

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.