fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text.RegularExpressions;
  6.  
  7. public class Test
  8. {
  9. public static void Main()
  10. {
  11. var s = "There are many kids in the playground. It's about 1 23 45 5;中文等等";
  12. var pattern = @"([0-9])|([a-zA-Z])|([\u4e00-\u9fa5])";
  13. var ms = Regex.Matches(s, pattern).Cast<Match>();
  14. var ascii_digit_cnt = ms.Select(x => x.Groups[1].Value).Where(n => !string.IsNullOrEmpty(n)).Count();
  15. var ascii_letter_cnt = ms.Select(x => x.Groups[2].Value).Where(n => !string.IsNullOrEmpty(n)).Count();
  16. var han_cnt = ms.Select(x => x.Groups[3].Value).Where(n => !string.IsNullOrEmpty(n)).Count();
  17. Console.WriteLine($"{ascii_digit_cnt} : {ascii_letter_cnt} : {han_cnt}");
  18. }
  19. }
Success #stdin #stdout 0.05s 20596KB
stdin
Standard input is empty
stdout
6 : 39 : 4