Help! need a good text editor or solution

provision

BANNED
Joined
Oct 27, 2013
Messages
408
Reaction score
210
I have a list of 2000 accounts in the format of username;password;email;proxy and I need every account in the list in just the format username;password anyone know of a text editor or something that can do this or am I gonna spend the next hour deleting the email and proxy text........
 
Use microsoft word and find-replace all the ';' characters with '^t' using wildcards to insert a tab.
a40cae10ff.png

Paste into a .csv excel file and then delete the columns you don't want. If you need the ';' back, then just reverse the process.
That's the easiest non-code non-macro way I can think of
 
Use microsoft word and find-replace all the ';' characters with '^t' using wildcards to insert a tab.
View attachment 40966

Paste into a .csv excel file and then delete the columns you don't want. If you need the ';' back, then just reverse the process.
That's the easiest non-code non-macro way I can think of

This can be done in 2 secs with notepad++ and you don't need to copy/paste anything.
 
notepad ++ worked thanks guys
 
Back
Top