fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4.  
  5. static void Main()
  6. {
  7. Regex r = new Regex(@"\b\d{2}\.\d{2}\.\d{2}\b");
  8. string text1 = "Дата: 12.05.23";
  9. string text2 = "Нет даты";
  10. string text3 = "Дата рождения: 01.01.99";
  11. string text4 = "Некорректная дата: 32.13.22"; // Пример некорректной даты
  12.  
  13. Console.WriteLine(r.IsMatch(text1)); // true
  14. Console.WriteLine(r.IsMatch(text2)); // false
  15. Console.WriteLine(r.IsMatch(text3)); // true
  16. Console.WriteLine(r.IsMatch(text4)); // false
  17. }
  18.  
Success #stdin #stdout 0.04s 23852KB
stdin
Standard input is empty
stdout
Standard output is empty