fork(4) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string value = "11,.Ad23";
  9. string nonNumericValue = string.Concat(value.Where(c => !Char.IsDigit(c)));
  10. Console.WriteLine(nonNumericValue);
  11. }
  12. }
Success #stdin #stdout 0.03s 24200KB
stdin
Standard input is empty
stdout
,.Ad