fork(1) download
  1. using System;
  2. using System.Linq;
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string StringToCheck = ";#abc@()[]_-~`";
  8.  
  9. string NewString= new String(StringToCheck.Where(x => Char.IsLetterOrDigit(x)).ToArray());
  10. Console.WriteLine(NewString);
  11. }
  12. }
Success #stdin #stdout 0.03s 24160KB
stdin
Standard input is empty
stdout
abc