fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var str = "BIC: XXXXXXXX Naam: MR. YYYYY INZ. ABCIRR. NE Abcdefghijlk: ABCDE: 57.10.70.13 2 THE NEXPRK BV IF TE VERREKENEN SALDO";
  9. var res = new String(str.Where(char.IsDigit).ToArray());
  10. Console.WriteLine("'{0}'", res);
  11. }
  12. }
Success #stdin #stdout 0.03s 33904KB
stdin
Standard input is empty
stdout
'571070132'