How would I replace a "TAB" in Notepad++?

I'm attempting to format a giant list. Each entry in the list is separated by a tab. I'd like to replace it with a \r\n in Notepad++.

How would I go about this?

1 Answer

Find what:

\t

Replace with:

\r\n

For Search Mode, I think you have to select Extended (\n, \r, \t, \0, \x...).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like