This was one of the first things I made when I started C# so it's kinda messy.
PHP Code:
public String DotTrick(String Email)
{
String Str = String.Empty;
foreach (char character in Email.ToLower())
{
if (character.ToString() != "@")
{
Str += character.ToString();
for (int x = 0; x < random.Next(random.Next(1, 10), random.Next(11, 15)); x++)
{
Str += ".";
}
}
else
{
break;
}
}
Email += "@gmail.com";
return Email;
}
Results 1 to 1 of 1
Thread: [C#] Gmail Dot Trick
- 05 Jan. 2011 04:20am #1
[C#] Gmail Dot Trick