fork(4) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var str = "105, c#, vb, 345, 53, sql51";
  9. var res = str
  10. .Split(new[] {',', ' '})
  11. .Where(s => s.Any(c => !Char.IsDigit(c)))
  12. .ToList();
  13. foreach (var s in res) {
  14. Console.WriteLine(s);
  15. }
  16. }
  17. }
Success #stdin #stdout 0.03s 34880KB
stdin
Standard input is empty
stdout
c#
vb
sql51