In Sublime Text 2, I want search and replace by the TAB character.
I tried replacing with \t char but it's not working.
How can I do it?
In Sublime Text 2, I want search and replace by the TAB character.
I tried replacing with \t char but it's not working.
How can I do it?
You can use regular expressions by clicking on this button:

The regex for a Tab character is \t.
The accepted answer only give half of the answer to the question
If you want to replace ',' and insert tab:

But to replace the tab text with real tab you first have to replace tab text with a different character, and then do the tab insert: