Recent Posts
None | 10 sec ago
None | 1 min ago
None | 1 min ago
None | 1 min ago
None | 1 min ago
SQL | 2 min ago
None | 2 min ago
None | 2 min ago
mIRC | 2 min ago
None | 2 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 18th of Nov 2008 05:07:27 PM
Download |
Raw |
Embed |
Report
using System;
using System.Text.RegularExpressions;
namespace myapp
{
class Class1
{
static void Main(string[] args)
{
String stextbox = "trees";
String sletters = Regex.Replace(@"ABCDEFGHIJKLMNOPQRSTUVWXYZ", @"[" + stextbox + "]", "", RegexOptions.IgnoreCase);
char[] cletters = sletters.ToCharArray();
foreach (char c in cletters)
{
Console.WriteLine("%{0}%", c);
}
}
}
}
Submit a correction or amendment below.
Make A New Post