fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var versionPattern = @"^\d+(.\d+){3}$";
  9. if (Regex.IsMatch("1.0.0.123", versionPattern))
  10. {
  11. Console.WriteLine("match");
  12.  
  13. }
  14. if (Regex.IsMatch("1.0.0.4", versionPattern))
  15. {
  16. Console.WriteLine("match");
  17.  
  18. }
  19. }
  20. }
Success #stdin #stdout 0.11s 24688KB
stdin
Standard input is empty
stdout
match
match