Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any information about how to do it. I like to be able to do that because some web forms don't respect code with tabs in it.

link|improve this question

2  
It's weird, but I have the inverse of this question! I'd like to know how to convert a document from spaces to tabs for XML indentation in Tidy! – Dan Atkinson Oct 29 '10 at 11:12
feedback

10 Answers

up vote 192 down vote accepted

First set the "replace by spaces" setting in Preferences -> Language Menu/Tab Settings. Next, open the document you wish to replace tabs with Highlight all the text Then select TextFX -> TextFX Edit -> Leading spaces to tabs or tabs to spaces

link|improve this answer
1  
Yes, this is far more sensible than doing search/replace, and TextFX is built-in to Notepad++. – rjh Mar 7 '09 at 14:05
2  
This is actually the best answer. – KyleFarris Aug 16 '09 at 0:36
45  
Just a poorly named feature in a poorly placed menu. – spoulson Dec 16 '09 at 19:51
7  
The best answer for the question (perhaps not as the author intended it) is the tabs to spaces plugin offered below. The question asks for all tabs to spaces, while this answer only converts leading spaces. If, for example, you need to convert tabular data spaced with tabs while maintaining column positions, this answer will not help you. The plugin is the only Notepad++ solution to that question which I can see here. – Binary Phile Apr 8 '11 at 18:46
1  
Answer which seems to be wrong. As Binary Phile indicates it only converts the leading tabs. In later versions there is also an option Edit -> Blank Operations -> TAB to space, but that does not work as requested either. As far as I see it there is no way currently in NP++ out of the box. Haven't tried the plugin Binary Phile mentions. – Stijn de Witt Oct 25 '11 at 12:08
show 4 more comments
feedback

Settings -> Preference -> Edit Components (tab) -> Tab Setting (group) -> Replace by space

In version 5.6.8 (and above):

Settings -> Preferences... -> Language Menu/Tab Settings -> Tab Settings (group) -> Replace by space

link|improve this answer
Thanks for the reply. I was hoping there was a way to just apply it to a highlighted block of text. I prefer to work with tabs. I just want to be able to switch to spaces before pasting some code into a form. – Helephant Jan 18 '09 at 12:17
3  
While the reply by Dror is certainly the 'answer', this is definitely also helpful to know for other uses! – Marc Bollinger Jul 22 '09 at 21:12
Not the answer to the question but the answer that I was looking for. Cheers, Aron. – Brent Plump Aug 15 '09 at 10:18
1  
It took me so long to find this... – NikiC Aug 7 '10 at 16:43
Wow! So much rumour about an (apparently) simple task. Replace with \t and Extended switch works fine for me – waanders Sep 16 '10 at 8:26
show 1 more comment
feedback

you need to replace \t - make sure you use extended mode!
repalce

link|improve this answer
4  
just to emphasize, you need to put four space (or two, or whatever) in the "replace with" box. – hasen j Jan 18 '09 at 12:26
1  
you can replace the \t (tab) to any number of spaces, see wiki.answers.com/Q/How_many_spaces_is_a_tab – Dror Jan 18 '09 at 12:31
2  
This will only work properly for tabs at the start of a line. E.g. in a line like this (using [tab] to represent a tab): "[tab]foo[tab]bar", with a tab size of 4 spaces, the first tab should be 4 spaces, but the second tab should be only 1 space. – mercator Jan 18 '09 at 18:39
1  
@mercator - your case is entirely context-dependent. If that is the case, the OP can use 'Find Next'/'Replace' to jump to the next occurrence and make case-by-case decisions. The original question doesn't seem to indicate that concern. – DaveE Nov 12 '09 at 17:11
1  
@DaveE No, mercator's case is the universal case of how TAB works. Although mentioned in a comment and not in the original question, what essentially the OP wants is a transaperent switch from tabs to spaces, that is, he shouldnt know by looking after the conversion, that a conversion has been done. By taking the a selected text and expanding it to starts of lines, one could implement a calculation and do exactly what mercator implies. It is dependent only on the text expanded to line limits. So case by case decision is not needed. It is exactly what the expand command in UNIX does – Paralife Apr 15 '11 at 9:38
feedback

i just posted a notepad++ plugin to convert tabs to spaces. yes, it converts tabs in the middle of a line. yes, it takes into account other characters within the tabbed field. check it out.

https://sourceforge.net/projects/tabstospacesnpp/

link|improve this answer
1  
What if I have a string that I want to define with a Tab in it? It changes my source code and string literals, too? – maxwellb Jul 1 '10 at 12:45
Works like a charm for tabs to spaces. That's all it does, though. – Binary Phile Apr 8 '11 at 18:44
This answer does work! Yay, thanks! – Nathan McDaniel May 4 '11 at 14:31
Thank you, this is great. It's actually the only real answer to the question that covers all situations - leading tabs or embedded tabs, and taking location in the text and proper tab width into consideration. – RenniePet Jun 25 '11 at 21:05
This should be the answer for this question, especially now that TextFX isn't in the default installation of Notepad++. The plugin works flawlessly. Thank you! – Brown Oct 17 '11 at 15:40
feedback

There is no 'Edit Components' tab in the preferences setup. You need to go 'Language Menu/Tab Settings', there is an option in there to control tab behavior. You can even set it to work differently depending on the language of the file.

link|improve this answer
And after setting it there, use TextFX (TextFX -> TextFX Edit -> Leading spaces to tabs or tabs to spaces) as described earlier. This is definitely the way to go in the latest version of Npp. – Cees Meijer Dec 9 '09 at 11:32
feedback

the easy way:

  1. highlight a single tab area
  2. copy
  3. bring up find/replace
  4. paste into the find field
  5. click into the replace field and hit the space bar
  6. then replace all.
link|improve this answer
Maybe not the fanciest approach, but this worked for me. – Guy Starbuck May 20 '10 at 14:58
it's the lazy approach, which is generally my M.O. :] – matt lohkamp May 20 '10 at 21:51
2  
This is the Notepad (not++) way of doing things, too. – maxwellb Jul 1 '10 at 12:45
feedback

Version 5.9.3 has Edit->Blank Operations->TAB to Space.

Just saying because I couldn't find TextFX in this version, seems it was removed in newer versions.

link|improve this answer
feedback

In version 5.8.7 :

Settings -> Preferences... -> Language Menu/Tab Settings -> Tab Settings (You may select the very language to replace tabs to spaces. It's cool!) -> Unselect[Use default value] && Select[Replace by space]

link|improve this answer
feedback

Since I can't comment on other replies atm, I'll add my own here: All the answers telling how to replace tabs with spaces -- no matter how sophisticated the methods -- are something that good old Notepad could achieve easily (just follow the steps on matt lohkamp's reply). I would expect Notepad++ to have more advanced capabilities and be able to replace tabs in the middle of lines, as many people have commented on this thread. I hope someone comes up with a real solution; otherwise this question would be generic, applying to any text editor, not only to Notepad++.

edit: I just tried two programs after searching google. The first one (bluefive.pair.com/tabs2spaces.htm) was crap (it simply does that basic replacement even Notepad can do). The second one, though, worked like a charm. It's called CLR Tabs to Spaces and it handles middle-line tabs perfectly. I'll suggest the maker to convert it into a Notepad++ plugin :)

edit 2: I guess I overlooked a feature in tabs2spaces: the Fixed Layout Formatting mode seems to make it work more or less as expected; however, it is still less flexible than "CLR Tabs to Spaces", since the latter allows the user to change the amount of spaces per tab. By the way, after contacting the tool's developer, he quickly made a npp plugin out of it (as he has announced on this thread himself), so make sure to try it out!

link|improve this answer
feedback

If you happen to work in a unix environment, the expand command is what you need: http://linux.die.net/man/1/expand

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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