Request Bác nào biết hay có tool như này share em với.

yeuay

Senior
Joined
Aug 6, 2014
Messages
756
Reactions
72
MR
0.000
Tool trộn và nối 2 đoạn text với nhau.

VD

1 bên là list user:

user1
user2
user3

1 bên là list password:

pass1
pass2
pass3

việc cần làm là sẽ nối user1 lần lượt với pass1, pass2, pass3.
rồi nối user2 với lần lượt với pass1, pass2, pass3.
tiếp user3 lần lượt với pass1, pass2, pass3.

sau đó ta đc

Code:
user1:pass1
user1:pass2
user1:pass3
user2:pass1
user2:pass2
user2:pass3
user3:pass1
user3:pass2
user3:pass3

và tất nhiên sẽ có nhiều user và pass cùng lúc :D

Bác nào biết làm kiểu này hay có tool làm đc như này share em với.

Tool đơn giản thôi, mong các bác giúp em

Thanks
 
copy cái user 1 ra 3 phát
copy cái user 2 ra 3 phát
copy cái user 3 ra 3 phát
dc list user
copy list pass zô
user1:pass1
user1:pass2
user1:pass3
user2:pass1
user2:pass2
user2:pass3
user3:pass1
user3:pass2
user3:pass3
 

doicodoc

Senior
Joined
Apr 20, 2015
Messages
306
Reactions
115
MR
0.000
Chat with me via Skype
vãi thật j cung tool . khong kheo jo nhân chia cộng trừ không co máy tính không làm nổi
 

khoatai

Hero
Joined
Jul 19, 2011
Messages
726
Reactions
518
MR
0.001
Call me! Call me! Follow me on Facebook
Code thế này có biết C# thì dễ dàng


static string[] UserArr = new string[] { "user1", "user2", "user3", "user4", "user5" };
static string[] PassArr = new string[] { "password1", "password2", "password3", "password4", "password5" };

static string[] tron()
{
string[] result=new string[UserArr.Length*PassArr.Length];
int flag = 0;
for (int i = 0; i < UserArr.Length; i++)
{
for (int j = 0; j < PassArr.Length; j++)
{
result[flag++] = UserArr + ":" + PassArr[j] ;
}
}
return result;
}
 

Announcements

Forum statistics

Threads
426,341
Messages
7,175,719
Members
178,791
Latest member
emtuoichuot

Most viewed of week

Most viewed of week

Back
Top Bottom