Username:Proxy format generator?

Mihaita

Power Member
Joined
Oct 10, 2010
Messages
657
Reaction score
280
Hey,

I got a lot of usernames and proxy and I want to assign them with this format:

Username:proxy

Do you guys know any tool/script/website that can do this ?(Noob question I know...I can swear I did this before in the past but I just can't remember how)

Thanks.
 
Hi, can you describe the problem in a bit more details ? You would like to convert this format username:proxy into something else, right ?
 
So, i got 1k usernames in a notepad and 1k proxies in another notepad
And i want to convert them in this format Username : proxies
 
If you are fine with manual work an you want the line x of usernames file to be assigned with line x of file with proxies you can simply open up the Excel or Open Office Calc and paste the usernames into column A, proxies into column B, then select both the columns, copy them to clipboard, paste everything into notepad and replace the value between 2 values with ":"
 
I would use excel to paste the first list in the first column, it should automatically place each line in the next cell down. The second list goes in the second column.

You can then copy and paste both columns to notepad++ and use the replace feature to replace the tab/space between the proxy and username with ":"
 
Last edited:
Got it, thanks guys.
 
F# Script:

let userNamesFile = "username.txt"
let proxyFile = "proxy.txt"
let usernames = File.ReadAllLines(userNamesFile)
let proxies = File.ReadAllLines(proxyFile)

let output=
if(usernames.Length <> proxies.Length) then
printfn "Number of UserNames and Proxies must be equal"
else
let output =
Array.zip usernames proxies
|>Array.map (fun (n,p)->n+":"+p)
File.WriteAllLines("combined.txt", output)

I can convert this to executable if you need !
 
Back
Top